/* ================================
   PINKESSH THAKKAAR - PREMIUM LANDING PAGE
   ================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --royal-blue: #1a365d;
    --royal-blue-light: #2c5282;
    --royal-blue-dark: #0f2744;
    
    /* Accent Colors */
    --gold: #d4a853;
    --gold-light: #e8c87a;
    --gold-dark: #b8923a;
    
    /* Secondary Colors */
    --emerald: #047857;
    --emerald-light: #059669;
    
    /* Neutrals */
    --white: #ffffff;
    --ivory: #fefcf8;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 54, 93, 0.1);
    --shadow-lg: 0 8px 40px rgba(26, 54, 93, 0.15);
    --shadow-xl: 0 20px 60px rgba(26, 54, 93, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--royal-blue-dark);
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(212, 168, 83, 0.05));
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.section-badge.light {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--royal-blue);
    position: relative;
}

.section-title .highlight-gold {
    color: var(--gold);
}

.section-title.light {
    color: var(--white);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-blue-dark);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn.full-width {
    width: 100%;
}

/* ================================
   HEADER
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(26, 54, 93, 0.05);
    overflow: visible;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--royal-blue-dark);
}

.logo-divider {
    color: var(--gold);
    font-weight: 300;
}

.logo-company {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--royal-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-blue-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--royal-blue-dark);
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    text-align: center;
    order: 2;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--royal-blue-dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: start;
}

.hero-image {
    display: flex;
    justify-content: center;
    order: 1;
}

.hero-image-wrapper {
    position: relative;
    width: 280px;
    height: 340px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-image-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    color: var(--gold);
    font-size: 1.1rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--royal-blue-dark);
    white-space: nowrap;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ================================
   TRUST STRIP
   ================================ */
.trust-strip {
    padding: 50px 0;
    background: var(--gray-50);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(26, 54, 93, 0.05));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--royal-blue);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--royal-blue-dark);
}

/* ================================
   PROBLEM SOLUTION
   ================================ */
.problem-solution {
    padding: var(--section-padding) 0;
    background: var(--ivory);
}

.ps-grid {
    display: grid;
    gap: 40px;
}

.ps-heading {
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.ps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ps-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.ps-item.problem {
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.ps-item.problem .ps-icon svg {
    stroke: #dc3545;
}

.ps-item.solution {
    background: rgba(4, 120, 87, 0.05);
    border: 1px solid rgba(4, 120, 87, 0.1);
}

.ps-item.solution .ps-icon svg {
    stroke: var(--emerald);
}

.ps-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.ps-icon svg {
    width: 100%;
    height: 100%;
}

.ps-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray-700);
}

.ps-arrow {
    display: none;
    align-items: center;
    justify-content: center;
}

.ps-arrow svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    gap: 50px;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    width: 300px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: 10%;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    text-align: center;
}

.about-text {
    margin-bottom: 32px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray-700);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.1));
    border-radius: 50%;
}

.value-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

.value-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--royal-blue-dark);
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--ivory);
}

.services-grid {
    display: grid;
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border: none;
}

.service-card.featured .service-title,
.service-card.featured .service-description {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
}

.service-card.featured .service-icon svg {
    stroke: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(26, 54, 93, 0.05));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--royal-blue);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--royal-blue-dark);
}

.service-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================
   RESULTS SECTION
   ================================ */
.results {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.result-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.result-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.process-step:hover {
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.step-content {
    min-width: 0;
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--royal-blue-dark);
}

.step-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(26, 54, 93, 0.05));
    border-radius: var(--radius-md);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--royal-blue);
}

.process-connector {
    height: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--royal-blue-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--ivory);
}

.testimonials-grid {
    display: grid;
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote svg {
    width: 32px;
    height: 32px;
    fill: var(--gold);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--royal-blue-dark);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ================================
   LEAD MAGNET SECTION
   ================================ */
.lead-magnet {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
    position: relative;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.lead-magnet-content {
    display: grid;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.lead-magnet-text {
    text-align: center;
}

.lead-magnet-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.lead-magnet-benefits {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.lead-magnet-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.lead-magnet-benefits svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.lead-magnet-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Forms */
.consultation-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 8px;
    color: var(--royal-blue-dark);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

/* ================================
   FAQ SECTION
   ================================ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--royal-blue-dark);
    background: var(--white);
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--gold);
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    gap: 50px;
}

.contact-info {
    text-align: center;
}

.contact-description {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(26, 54, 93, 0.05));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--royal-blue);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-weight: 600;
    color: var(--royal-blue-dark);
}

a.contact-value:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--royal-blue-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo .logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo .logo-company {
    font-size: 0.9rem;
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-association {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links,
.footer-services,
.footer-contact {
    text-align: center;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.legal-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-link:hover {
    color: var(--gold);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
    .header-container {
        padding: 20px 32px;
    }
    
    .nav {
        display: block;
    }
    
    .header-cta {
        display: inline-block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
        text-align: left;
        order: 1;
    }
    
    .hero-image {
        flex: 0 0 auto;
        order: 2;
    }
    
    .hero-image-wrapper {
        width: 350px;
        height: 420px;
    }
    
    .hero-ctas {
        flex-direction: row;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-grid .trust-item:last-child {
        grid-column: span 1;
    }
    
    .ps-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: stretch;
    }
    
    .ps-arrow {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        gap: 60px;
    }
    
    .about-content {
        text-align: left;
    }
    
    .about-values {
        justify-content: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .lead-magnet-text {
        text-align: left;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        text-align: left;
    }
    
    .footer-brand,
    .footer-links,
    .footer-services,
    .footer-contact {
        text-align: left;
    }
    
    .footer-logo {
        align-items: flex-start;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero-container {
        gap: 80px;
    }
    
    .hero-image-wrapper {
        width: 400px;
        height: 480px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid .service-card:last-child {
        grid-column: span 1;
    }
    
    .process-steps {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .process-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .step-number {
        order: 1;
    }
    
    .step-icon {
        order: 2;
        margin: 0 auto;
    }
    
    .step-content {
        order: 3;
    }
    
    .process-connector {
        width: 60px;
        height: 2px;
        margin: 70px 0 0;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    :root {
        --section-padding: 120px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid .service-card:last-child {
        grid-column: span 1;
    }
}

/* Mobile Menu Overlay */
.nav.mobile-active {
    display: block !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    min-height: calc(100vh - 70px) !important;
    background: #ffffff !important;
    padding: 32px;
    z-index: 9999;
    animation: fadeInUp 0.3s ease;
    overflow-y: auto;
}

.nav.mobile-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: -1;
}

.nav.mobile-active .nav-list {
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 20px 0;
}

.nav.mobile-active .nav-link {
    font-size: 1.1rem;
    display: block;
    padding: 12px 0;
    background: #ffffff;
}

@media (min-width: 768px) {
    .nav.mobile-active {
        display: block;
        position: static;
        padding: 0;
        background: none;
        animation: none;
    }
    
    .nav.mobile-active .nav-list {
        flex-direction: row;
        gap: 32px;
    }
    
    .nav.mobile-active .nav-link {
        font-size: 0.9rem;
    }
}

/* Selection */
::selection {
    background: var(--royal-blue);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--royal-blue-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--royal-blue);
}
