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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1A3A52;
    line-height: 1.6;
    overflow-x: hidden;
    background: #FDFBF7;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
}

/* Navigation */
nav {
    background: #FDFBF7;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(13, 115, 119, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: #6B6B6B;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0D7377;
}

.nav-cta {
    background: #4A6B82;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.6);
    background: #4f83a8;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #0D7377;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    background: #FDFBF7;
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-link {
    text-decoration: none;
    color: #1A3A52;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #E8E4D9;
    transition: color 0.2s;
}

.mobile-menu-link:hover {
    color: #0D7377;
}

.mobile-menu-cta {
    display: block;
    text-align: center;
    background: #4A6B82;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.2s;
}

.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.6);
    background: #4f83a8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F1E8 0%, #EDE7DB 100%);
    color: #1A3A52;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: #8FB996;
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: #0D7377;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #1A3A52;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #6B6B6B;
}

.hero-cta {
    display: inline-block;
    background: #4A6B82;
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.6);
    background: #4f83a8;
}

.hero-subtext {
    margin-top: 16px;
    font-size: 14px;
    color: #6B6B6B;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #1A3A52;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.phone-mockup {
    background: white;
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(13, 115, 119, 0.15);
    width: 320px;
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    background: linear-gradient(180deg, #F5F1E8 0%, #FDFBF7 100%);
    border-radius: 24px;
    padding: 24px;
    min-height: 500px;
}

.phone-header {
    font-size: 14px;
    font-weight: 600;
    color: #0D7377;
    margin-bottom: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 12px;
    border: 2px solid #E8E4D9;
    transition: all 0.2s;
}

.product-card:hover {
    border-color: #0D7377;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 115, 119, 0.1);
}

.product-image {
    background: linear-gradient(135deg, #8FB996 0%, #0D7377 100%);
    border-radius: 8px;
    height: 100px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-name {
    font-size: 12px;
    font-weight: 600;
    color: #1A3A52;
    margin-bottom: 4px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #0D7377;
}

.floating-notification {
    position: absolute;
    bottom: 80px;
    right: 0px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.2);
    border: 2px solid #8FB996;
    animation: slideIn 0.5s ease-out 1s both;
    z-index: 10;
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateX(20px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-text {
    color: #1A3A52;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-amount {
    color: #0D7377;
    font-size: 18px;
    font-weight: 700;
}

/* Section Container */
.section {
    padding: 100px 24px;
}

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

/* Feature Section - Teal Theme */
.feature-pink {
    background: #FDFBF7;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(143, 185, 150, 0.15);
    color: #0D7377;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #1A3A52;
}

.feature-content p {
    font-size: 18px;
    color: #6B6B6B;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #1A3A52;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #8FB996;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    background: white;
    border: 2px solid #E8E4D9;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: #8FB996;
    box-shadow: 0 8px 24px rgba(143, 185, 150, 0.15);
    transform: translateY(-4px);
}

.feature-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1A3A52;
}

.feature-card p {
    font-size: 14px;
    color: #6B6B6B;
    margin: 0;
}

/* Feature Section - Sage Theme */
.feature-cyan {
    background: linear-gradient(180deg, rgba(143, 185, 150, 0.08) 0%, rgba(143, 185, 150, 0.03) 100%);
}

.feature-badge-cyan {
    background: rgba(13, 115, 119, 0.12);
    color: #0D7377;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, #0D7377 0%, #0D7377 25%, #8FB996 25%, #8FB996 50%, #E07A5F 50%, #E07A5F 75%, #F4D58D 75%, #F4D58D 100%);
    z-index: 0;
}

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(13, 115, 119, 0.08);
    transition: all 0.2s;
    border: 2px solid #E8E4D9;
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.12);
    border-color: #8FB996;
}

.stat-card:nth-child(1) {
    border-color: #0D7377;
}

.stat-card:nth-child(2) {
    border-color: #8FB996;
}

.stat-card:nth-child(3) {
    border-color: #E07A5F;
}

.stat-card:nth-child(4) {
    border-color: #F4D58D;
}

.stat-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.1) 0%, rgba(143, 185, 150, 0.1) 100%);
}

.stat-card:nth-child(1) .stat-card-icon {
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.15) 0%, rgba(13, 115, 119, 0.05) 100%);
}

.stat-card:nth-child(2) .stat-card-icon {
    background: linear-gradient(135deg, rgba(143, 185, 150, 0.15) 0%, rgba(143, 185, 150, 0.05) 100%);
}

.stat-card:nth-child(3) .stat-card-icon {
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.15) 0%, rgba(224, 122, 95, 0.05) 100%);
}

.stat-card:nth-child(4) .stat-card-icon {
    background: linear-gradient(135deg, rgba(244, 213, 141, 0.15) 0%, rgba(244, 213, 141, 0.05) 100%);
}

.stat-card-label {
    font-size: 14px;
    font-weight: 700;
    color: #0D7377;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card-value {
    font-size: 16px;
    font-weight: 600;
    color: #1A3A52;
    line-height: 1.4;
}

.stat-card::after {
    content: '→';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #8FB996;
    font-weight: 700;
}

.stat-card:last-child::after {
    content: '';
}

/* Feature Section - Coral Theme */
.feature-orange {
    background: #FDFBF7;
}

.feature-badge-orange {
    background: rgba(224, 122, 95, 0.12);
    color: #E07A5F;
}

.check-icon-orange {
    background: #E07A5F;
}

.partner-logos {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.partner-logo {
    background: white;
    border: 2px solid #E8E4D9;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    color: #6B6B6B;
    transition: all 0.2s;
}

.partner-logo:hover {
    border-color: #E07A5F;
    color: #E07A5F;
}

/* Testimonials */
.testimonials {
    padding: 100px 24px;
    background: linear-gradient(135deg, #F5F1E8 0%, #EDE7DB 100%);
    position: relative;
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1A3A52;
}

.section-header p {
    font-size: 18px;
    color: #6B6B6B;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    color: #1A3A52;
    transition: all 0.2s;
    border: 2px solid #E8E4D9;
    box-shadow: 0 4px 16px rgba(13, 115, 119, 0.08);
}

.testimonial-card:nth-child(1) {
    border-color: #8FB996;
}

.testimonial-card:nth-child(2) {
    border-color: #0D7377;
}

.testimonial-card:nth-child(3) {
    border-color: #E07A5F;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.15);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8FB996 0%, #0D7377 100%);
    border: 3px solid #E8E4D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-card:nth-child(2) .testimonial-avatar {
    background: linear-gradient(135deg, #0D7377 0%, #8FB996 100%);
}

.testimonial-card:nth-child(3) .testimonial-avatar {
    background: linear-gradient(135deg, #E07A5F 0%, #F4D58D 100%);
}

.testimonial-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #1A3A52;
}

.testimonial-info p {
    font-size: 14px;
    color: #6B6B6B;
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 12px;
    color: #6B6B6B;
}

.testimonial-quote {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #1A3A52;
}

.testimonial-stars {
    color: #F4D58D;
    font-size: 16px;
}

/* Pricing */
.pricing {
    padding: 100px 24px;
    background: linear-gradient(180deg, rgba(143, 185, 150, 0.08) 0%, rgba(143, 185, 150, 0.03) 100%);
}

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

.pricing-card {
    background: white;
    border: 2px solid #E8E4D9;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0D7377 0%, #8FB996 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 14px;
    font-weight: 600;
    color: #0D7377;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 40px;
    font-weight: 700;
    color: #1A3A52;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 16px;
    color: #6B6B6B;
    font-weight: 500;
}

.pricing-description {
    font-size: 14px;
    color: #6B6B6B;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #1A3A52;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid #0D7377;
    color: #0D7377;
    background: white;
}

.pricing-cta:hover {
    background: #0D7377;
    color: white;
}

.pricing-card.featured .pricing-cta {
    background: #4A6B82;
    color: white;
    border: none;
}

.pricing-card.featured .pricing-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.6);
    background: #4f83a8;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: #6B6B6B;
}

.pricing-note strong {
    color: #0D7377;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #0D7377 0%, #1A3A52 100%);
    color: white;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: #8FB996;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: #E07A5F;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-button {
    display: inline-block;
    background: #FFFFFF;
    color: black;
    padding: 20px 48px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.final-cta-button:hover {
    transform: translateY(-2px);
}

.final-cta-links {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 16px;
}

.final-cta-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.final-cta-links a:hover {
    color: white;
}

.final-cta-footer {
    margin-top: 40px;
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #1A3A52;
    color: white;
    padding: 60px 24px 32px;
}

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

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

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: #8FB996;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4 {
    margin-bottom: 16px;
    font-size: 16px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #8FB996;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive */
/* Tablet and below */
@media (max-width: 968px) {
    /* Navigation */
    nav {
        padding: 16px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: 60px 24px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 32px;
    }

    .stat {
        font-size: 14px;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 100%;
        max-width: 400px;
    }

    .phone-screen {
        min-height: 450px;
        padding: 20px;
    }

    .floating-notification {
        position: absolute;
        bottom: 20px;
        right: 20px;
        left: auto;
        margin-top: 0;
    }

    /* Feature Sections */
    .section {
        padding: 60px 24px;
    }

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

    .feature-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .feature-content p {
        font-size: 16px;
    }

    .feature-visual {
        order: 1 !important;
    }

    /* Stats Grid / Process Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid::before {
        display: none;
    }

    .stat-card::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -28px;
        transform: translateX(50%);
    }

    .stat-card:last-child::after {
        content: '';
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 24px;
    }

    .section-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 16px;
    }

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

    /* Pricing / Why Choose Section */
    .pricing {
        padding: 60px 24px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 24px;
    }

    .final-cta h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .final-cta p {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .final-cta-button {
        padding: 16px 36px;
        font-size: 16px;
    }

    .final-cta-links {
        flex-direction: column;
        gap: 16px;
    }

    .final-cta-links span {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    /* Hero Section */
    .hero {
        padding: 40px 16px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hero-visual {
        padding: 0 16px;
    }

    .phone-mockup {
        width: 100%;
        max-width: 100%;
        animation: none;
    }

    /* Sections */
    .section {
        padding: 40px 16px;
    }

    .feature-content h2 {
        font-size: 26px;
    }

    .feature-content p {
        font-size: 15px;
    }

    .feature-badge,
    .feature-badge-cyan,
    .feature-badge-orange {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Product Grid */
    .product-grid {
        gap: 8px;
    }

    .product-card {
        padding: 8px;
    }

    .product-image {
        height: 80px;
    }

    .product-name {
        font-size: 11px;
    }

    .product-price {
        font-size: 13px;
    }

    /* Floating Notification on Mobile */
    .floating-notification {
        position: absolute;
        bottom: 16px;
        right: 16px;
        left: auto;
        padding: 12px 16px;
        font-size: 13px;
    }

    .notification-amount {
        font-size: 16px;
    }

    /* Feature Cards */
    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    /* Stats/Process Cards */
    .stat-card {
        padding: 24px 20px;
    }

    .stat-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .stat-card-label {
        font-size: 12px;
    }

    .stat-card-value {
        font-size: 14px;
    }

    /* Partner Logos */
    .partner-logos {
        gap: 16px;
    }

    .partner-logo {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Testimonials */
    .testimonials {
        padding: 40px 16px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }

    .testimonial-info h3 {
        font-size: 16px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    /* Pricing Cards */
    .pricing {
        padding: 40px 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price {
        font-size: 32px;
    }

    .pricing-features li {
        font-size: 13px;
    }

    /* Final CTA */
    .final-cta {
        padding: 40px 16px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta p {
        font-size: 16px;
    }

    .final-cta-button {
        padding: 14px 28px;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* Footer */
    footer {
        padding: 40px 16px 24px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-brand svg {
        width: 100px;
        height: 37px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 24px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .feature-content h2 {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .final-cta h2 {
        font-size: 24px;
    }

    .phone-mockup {
        padding: 8px;
    }

    .phone-screen {
        padding: 16px;
        min-height: 400px;
    }

    .product-grid {
        gap: 6px;
    }
}

/* ============================================================================
   WhatsApp Widget Component
   ============================================================================ */

/* Main Widget Container */
.whatsapp-widget {
  /* Positioning */
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99; /* Below nav (100) but above content */

  /* Layout */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px;

  /* Appearance */
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);

  /* Typography */
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;

  /* Animation & Transitions */
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;

  /* Default visible state */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Icon Styling */
.whatsapp-widget__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Text Styling */
.whatsapp-widget__text {
  line-height: 1;
}

/* Hover State */
.whatsapp-widget:hover {
  background-color: #20BA5A; /* Darker green on hover */
  box-shadow: 0 15px 25px -3px rgb(0 0 0 / 0.15);
  transform: translateY(-2px);
  animation: none; /* Stop floating on hover */
}

/* Active/Click State */
.whatsapp-widget:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Tablet & Below (< 768px) */
@media (max-width: 767px) {
  .whatsapp-widget {
    /* Smaller padding */
    padding: 12px;

    /* Closer to edge on mobile */
    bottom: 16px;
    right: 16px;
  }

  /* Hide text on mobile, show icon only */
  .whatsapp-widget__text {
    display: none;
  }

  /* Larger icon for easier tapping */
  .whatsapp-widget__icon {
    width: 28px;
    height: 28px;
  }

  /* Gentler floating on mobile (battery consideration) */
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }
}

/* Small Mobile (< 430px) */
@media (max-width: 429px) {
  .whatsapp-widget {
    padding: 10px;
    bottom: 12px;
    right: 12px;
  }
}

/* Large Screens (> 1080px) */
@media (min-width: 1080px) {
  .whatsapp-widget {
    /* More breathing room on large screens */
    bottom: 32px;
    right: 32px;
  }
}

/* Hide in print */
@media print {
  .whatsapp-widget {
    display: none;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-widget {
    animation: none !important;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
}

/* Focus State for Keyboard Navigation */
.whatsapp-widget:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
  animation: none;
}
