/* ===================================
   STAFF BREEZE V2.0 - PREMIUM DESIGN
   Official Brand Colors from Style Guide
   
   BRAND COLOR PALETTE:
   Primary Navy: #031130 (Main dark)
   Navy Shades: #102042, #112143
   
   Mauve/Purple Gradient:
   #93809F (Light mauve)
   #686F94 (Blue-purple)
   #B198B6 (Pink-purple)
   #5F4E70 (Deep purple)
   #E1CADF (Very light lavender)
   
   Secondary Colors:
   #635371 (Medium purple)
   #5D506E (Dark purple)
   #63698B (Blue-grey)
   
   Typography: ALLROUNDER MONUMENT TEST
   =================================== */

/* ===================================
   GLOBAL STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: #031130;
    line-height: 1.7;
    overflow-x: hidden;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-weight: 700;
    color: #031130;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #102042;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #112143;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #686F94 0%, #93809F 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(104, 111, 148, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5D506E 0%, #93809F 100%);
    box-shadow: 0 6px 20px rgba(104, 111, 148, 0.4);
    transform: translateY(-2px);
}

.btn-primary i {
    font-size: 1.3rem;
}

.btn-secondary {
    background: transparent;
    color: #686F94;
    border: 2px solid #686F94;
}

.btn-secondary:hover {
    background: #686F94;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.btn-large i {
    font-size: 1.5rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    padding: 20px 0;
    min-height: 70px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(3, 17, 48, 0.08);
    padding: 12px 0;
}

/* iOS Safari safe area support */
@supports (-webkit-touch-callout: none) {
    .navbar {
        padding-top: calc(20px + env(safe-area-inset-top));
    }
    
    .navbar.scrolled {
        padding-top: calc(12px + env(safe-area-inset-top));
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .logo {
    background: transparent;
}

.logo:hover {
    opacity: 0.85;
}

.logo-main {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

.navbar.scrolled .logo-main {
    filter: none;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: none; /* Hidden since logo includes text */
    transition: color 0.3s ease;
}

.navbar.scrolled .logo span {
    color: #031130;
}

/* ===================================
   HAMBURGER MENU
   =================================== */

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: #031130;
}

.hamburger:hover span {
    background: #93809F;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 17, 48, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    max-width: 500px;
    width: 90%;
    padding: 40px;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
}

.close-menu:hover {
    color: #93809F;
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    padding: 10px;
}

.mobile-nav a:hover {
    color: #93809F;
    transform: translateX(10px);
}

.mobile-menu-cta {
    margin-top: 40px;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-line-mobile {
    color: #B198B6;
    font-size: 1rem;
    margin: 0;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(3, 17, 48, 0.7) 0%, 
        rgba(16, 32, 66, 0.6) 50%, 
        rgba(17, 33, 67, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    color: #E1CADF;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #B198B6;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-cta .btn-secondary {
    border-color: #B198B6;
    color: #E1CADF;
}

.hero-cta .btn-secondary:hover {
    background: #B198B6;
    color: #031130;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #E1CADF;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge i {
    color: #B198B6;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #E1CADF;
    font-size: 2rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #686F94;
    font-weight: 500;
}

/* ===================================
   PROBLEM/SOLUTION SECTION
   =================================== */

.problem-section {
    background: #F8F6FA;
}

/* Full-width problem header (top section) */
.problem-content-full {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.problem-header h2 {
    font-size: 2.8rem;
    color: #031130;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.problem-header .lead {
    font-size: 1.25rem;
    color: #635371;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.problem-header .lead:last-child {
    margin-bottom: 0;
}

/* Split layout (problem items + image) */
.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.problem-text {
    /* Text column */
}

.problem-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(3, 17, 48, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 400px;
}

.problem-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(3, 17, 48, 0.25);
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problem-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.problem-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(3, 17, 48, 0.05);
    transition: all 0.3s ease;
    flex: 1;
}

.problem-item:last-child {
    margin-bottom: 0;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(3, 17, 48, 0.1);
}

.problem-item i {
    font-size: 2rem;
    color: #686F94;
    min-width: 40px;
}

.problem-item h4 {
    color: #031130;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.problem-item p {
    color: #635371;
    margin: 0;
}

.solution-callout {
    margin-top: 0;
    padding: 40px;
    background: linear-gradient(135deg, #686F94 0%, #93809F 100%);
    border-radius: 16px;
    color: #FFFFFF;
    text-align: center;
    max-width: 100%;
}

.solution-callout h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.solution-callout p {
    color: #E1CADF;
    font-size: 1.15rem;
    margin: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 0;
    background: #FFFFFF;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(3, 17, 48, 0.08);
}

.service-card:hover {
    border-color: #93809F;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(147, 128, 159, 0.25);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.service-card h3 {
    color: #031130;
    margin-bottom: 1rem;
    padding: 25px 20px 0;
}

.service-card p {
    color: #635371;
    line-height: 1.7;
    margin: 0;
    padding: 0 20px 25px;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-it-works-section {
    background: linear-gradient(135deg, #F8F6FA 0%, #FFFFFF 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 25px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(3, 17, 48, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(104, 111, 148, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #686F94 0%, #93809F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(104, 111, 148, 0.3);
}

.step-icon {
    font-size: 3rem;
    color: #93809F;
    margin: 30px 0 20px;
}

.step-card h3 {
    color: #031130;
    margin-bottom: 1rem;
}

.step-card p {
    color: #635371;
    line-height: 1.7;
    margin: 0;
}

.cta-mini {
    text-align: center;
    margin-top: 60px;
}

.cta-mini p {
    font-size: 1.2rem;
    color: #031130;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===================================
   WHY US SECTION
   =================================== */

.why-section {
    background: linear-gradient(135deg, #031130 0%, #102042 100%);
    color: #FFFFFF;
}

.why-section .section-header h2 {
    color: #FFFFFF;
}

.why-section .section-subtitle {
    color: #B198B6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(177, 152, 182, 0.2);
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #93809F;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 128, 159, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #686F94 0%, #93809F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(104, 111, 148, 0.3);
}

.why-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.why-card p {
    color: #E1CADF;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    background: #FFFFFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    padding: 40px 30px;
    background: #F8F6FA;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    background: #FFFFFF;
    border-color: #93809F;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(147, 128, 159, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #031130 0%, #102042 100%);
    color: #FFFFFF;
    border-color: #93809F;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #686F94 0%, #93809F 100%);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(104, 111, 148, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #686F94 0%, #93809F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFFFFF;
}

.pricing-card.featured .pricing-icon {
    background: #FFFFFF;
    color: #686F94;
}

.pricing-header h3 {
    color: #031130;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-header h3 {
    color: #FFFFFF;
}

.pricing-desc {
    color: #686F94;
    font-size: 0.95rem;
}

.pricing-card.featured .pricing-desc {
    color: #B198B6;
}

.pricing-body {
    padding-top: 20px;
}

.price-tag {
    text-align: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: #686F94;
    font-weight: 600;
    vertical-align: top;
}

.pricing-card.featured .currency {
    color: #B198B6;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #031130;
    font-family: 'Montserrat', sans-serif;
}

.pricing-card.featured .amount {
    color: #FFFFFF;
}

.period {
    display: block;
    font-size: 0.95rem;
    color: #686F94;
    margin-top: 5px;
}

.pricing-card.featured .period {
    color: #E1CADF;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #102042;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #E1CADF;
}

.pricing-card.featured .pricing-features li {
    color: #E1CADF;
    border-bottom-color: rgba(177, 152, 182, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #93809F;
    font-size: 1.1rem;
}

.pricing-card.featured .pricing-features i {
    color: #B198B6;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #F8F6FA;
    border-radius: 12px;
    color: #635371;
}

.pricing-cta {
    text-align: center;
    margin-top: 50px;
}

.pricing-cta .btn-large {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
    background: linear-gradient(135deg, #031130 0%, #102042 50%, #112143 100%);
    color: #FFFFFF;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    color: #B198B6;
    margin-bottom: 3rem;
}

.trust-line {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #93809F;
    font-weight: 500;
}

.waitlist-section {
    margin-top: 80px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(177, 152, 182, 0.2);
}

.waitlist-section h3 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.waitlist-section > p {
    color: #E1CADF;
    margin-bottom: 30px;
}

.waitlist-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(177, 152, 182, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.waitlist-form input::placeholder {
    color: #B198B6;
}

.waitlist-form input:focus {
    outline: none;
    border-color: #93809F;
    background: rgba(255, 255, 255, 0.15);
}

.waitlist-form button {
    padding: 16px 32px;
    background: #FFFFFF;
    color: #686F94;
    font-weight: 700;
}

.waitlist-form button:hover {
    background: #E1CADF;
    color: #031130;
}

.privacy-note {
    color: #B198B6;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: #93809F;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #031130;
    color: #E1CADF;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand h4 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: none; /* Hidden since logo includes text */
}

.footer-company {
    color: #93809F;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #B198B6;
    font-style: italic;
}

.footer-contact h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #E1CADF;
}

.footer-contact i {
    color: #93809F;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a {
    color: #B198B6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #93809F;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(177, 152, 182, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #B198B6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #93809F;
}

.footer-legal span {
    color: #686F94;
}

.footer-copyright {
    color: #93809F;
    font-size: 0.9rem;
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1), 0 0 0 30px rgba(37, 211, 102, 0.05);
    }
}

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

/* Tablet (641px - 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .navbar {
        padding: 10px 0;
        min-height: 68px;
    }

    .nav-wrapper {
        min-height: 48px;
    }

    .logo-main {
        height: 48px;
    }

    .nav-cta-btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-content-full {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .problem-header h2 {
        font-size: 2.2rem;
    }

    .problem-header .lead {
        font-size: 1.1rem;
    }

    .problem-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .problem-image {
        height: 400px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 0;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {
    /* iOS Safari safe area adjustment */
    @supports (-webkit-touch-callout: none) {
        body {
            padding-top: env(safe-area-inset-top);
        }
    }

    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .navbar {
        padding: 8px 0;
        min-height: 64px;
    }

    @supports (-webkit-touch-callout: none) {
        .navbar {
            padding-top: calc(8px + env(safe-area-inset-top));
            min-height: calc(64px + env(safe-area-inset-top));
        }
    }

    .nav-wrapper {
        min-height: 48px;
    }

    .logo-main {
        height: 40px;
    }

    .logo span {
        display: none;
    }

    .nav-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .nav-cta-btn span {
        display: none;
    }

    .nav-cta-btn i {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 60px 0;
        min-height: 90vh;
    }

    @supports (-webkit-touch-callout: none) {
        .hero-section {
            padding-top: calc(60px + env(safe-area-inset-top));
        }
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-content-full {
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .problem-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .problem-header .lead {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .problem-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-image {
        order: -1;
        height: 300px;
    }

    .card-image {
        height: 200px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-subtitle {
        font-size: 1.1rem;
    }

    .waitlist-section {
        padding: 30px 20px;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.7rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 8px 0;
        min-height: 66px;
    }

    @supports (-webkit-touch-callout: none) {
        .navbar {
            padding-top: calc(8px + env(safe-area-inset-top));
            min-height: calc(66px + env(safe-area-inset-top));
        }
    }

    .logo-main {
        height: 38px;
    }

    .nav-cta-btn {
        padding: 9px 14px;
        font-size: 0.85rem;
    }

    .hero-section {
        padding-top: 66px;
    }

    @supports (-webkit-touch-callout: none) {
        .hero-section {
            padding-top: calc(66px + env(safe-area-inset-top));
        }
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .final-cta-title {
        font-size: 1.6rem;
    }

    .problem-item {
        flex-direction: column;
        text-align: center;
    }

    .solution-callout {
        padding: 30px 20px;
    }

    .solution-callout h3 {
        font-size: 1.5rem;
    }
}