<!
DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The PAT Method</title>
<style>
:root {
--pink: #ffcad4;
--light-pink: #ffe5ec;
--lavender: #f9f1f7;
--dark-bg: #121212;
--white: #ffffff;
--accent: #ff88aa;
--font-body: 'Montserrat', sans-serif;
--font-head: 'Playfair Display', serif;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-body);
background: var(--lavender);
color: #333;
line-height: 1.6;
}
h1, h2, h3 {
font-family: var(--font-head);
color: #222;
}
.section {
padding: 60px 20px;
}
.hero {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background: linear-gradient(to bottom, var(--pink), var(--light-pink));
position: relative;
}
.hero h1 {
font-size: 1.6rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.1rem;
margin-bottom: 20px;
}
.hero iframe {
width: 100%;
max-width: 320px;
height: 180px;
border: none;
border-radius: 12px;
margin-bottom: 20px;
}
.btn {
background: var(--accent);
color: white;
padding: 12px 24px;
border-radius: 30px;
box-shadow: 0 0 10px var(--accent);
font-weight: bold;
text-decoration: none;
transition: transform 0.2s;
}
.btn:hover {
transform: scale(1.05);
}
.benefits h2 {
text-align: center;
margin-bottom: 20px;
}
.benefits ul {
list-style: none;
padding-left: 0;
}
.benefits li {
padding: 10px;
font-size: 1rem;
}
.story, .why-different {
font-size: 1rem;
max-width: 800px;
margin: auto;
padding: 20px;
}
.testimonials {
display: grid;
gap: 20px;
}
.testimonial-card {
background: white;
padding: 20px;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease-in-out;
}
.testimonial-card.visible {
opacity: 1;
transform: translateY(0);
}
.what-you-get {
display: grid;
gap: 20px;
}
.product-mockups {
display: grid;
gap: 20px;
}
.mockup {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.2s, box-shadow 0.2s;
}
.mockup:hover {
transform: scale(1.05);
box-shadow: 0 0 15px var(--accent);
}
.why-different {
background: var(--dark-bg);
color: white;
padding: 40px 20px;
}
.comparison {
display: flex;
flex-direction: column;
gap: 10px;
}
.comparison-row {
display: flex;
justify