*{margin:0;padding:0;box-sizing:border-box}html{scroll-padding-top:calc(var(--navbar-height,90px) + env(safe-area-inset-top))}:root{--primary-color:#009966;--secondary-color:#1F2933;--accent-color:#F2C94C;--dark-bg:#1F2933;--light-bg:#F7F9F8;--text-dark:#1F2933;--text-light:#52606D;--white:#ffffff;--gradient:linear-gradient(135deg,#009966 0%,#00b377 100%);--gradient-hover:linear-gradient(135deg,#00b377 0%,#009966 100%);--navbar-height-desktop:90px;--navbar-height-tablet:70px;--navbar-height-mobile:56px;--navbar-height:var(--navbar-height-desktop)}

body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI','Roboto','Oxygen','Ubuntu',sans-serif;line-height:1.6;color:var(--text-dark);overflow-x:hidden;background-color:var(--white)}

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

.navbar .container {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .navbar .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px 0 10px;
    }
    :root {
        --navbar-height: var(--navbar-height-tablet);
    }
}

@media (max-width: 480px) {
    .navbar .container {
        width: 100%;
        max-width: 100%;
        padding: 0 12px 0 8px;
    }
    :root {
        --navbar-height: var(--navbar-height-mobile);
    }
}

/* Header */
header {
    background: transparent;
    margin: 0;
    padding: 0;
}

main {
    background: var(--white);
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0;
    }
}

.navbar .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
}

.navbar-flex {
    padding: 0;
}

.navbar-mobile-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 1.5rem;
}

@media (min-width: 769px) {
    .navbar .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 2rem;
    }
    .navbar-mobile-row {
        width: auto;
        min-height: unset;
        padding: 0;
    }
}

.logo h1 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-img {
    height: auto;
    width: 180px;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .logo a {
        display: flex;
        align-items: center;
    }
    .logo-img {
        width: 120px;
        max-width: 120px;
    }
    .navbar-mobile-row {
        width: 100%;
        min-height: 64px;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .logo a {
        display: flex;
        align-items: center;
    }
    .logo-img {
        width: 100px;
        max-width: 100px;
    }
    .navbar-mobile-row {
        min-height: 56px;
        padding: 0 0.75rem;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-color);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
    }
    .logo {
        order: 1;
    }
    .navbar .container {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }
    .nav-links {
        position: fixed;
        top: calc(var(--navbar-height) + env(safe-area-inset-top));
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
        align-items: stretch;
        opacity: 0;
    }
    .nav-links.active {
        max-height: calc(100vh - (var(--navbar-height) + env(safe-area-inset-top)));
        padding: 0.5rem 0;
        opacity: 1;
        overflow-y: auto;
    }
    
    .nav-links li {
        margin: 0;
        padding: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        text-decoration: none;
        color: var(--text-dark);
        border-bottom: 1px solid #f5f5f5;
        width: 100%;
        transition: all 0.2s ease;
    }
    
    .nav-links a:hover {
        background: rgba(0, 153, 102, 0.04);
        color: var(--primary-color);
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .nav-links .cta-button {
        margin: 0.5rem 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 6px;
        width: calc(100% - 2rem);
        display: flex;
        justify-content: center;
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .nav-links {
        top: calc(var(--navbar-height) + env(safe-area-inset-top));
    }
    
    .nav-links.active {
        max-height: calc(100vh - (var(--navbar-height) + env(safe-area-inset-top)));
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

.cta-button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 153, 102, 0.2);
    min-height: 44px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 153, 102, 0.35);
    background: var(--gradient-hover);
}

.cta-button:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark);
    padding: 100px 0 80px;
    margin-top: 75px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 40px;
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 30px;
        margin-top: 65px;
        overflow: visible !important;
        position: relative;
        z-index: 5;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }

    .hero::before {
        display: none !important;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23009966" opacity="0.05"/></svg>');
    animation: float 20s linear infinite;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 12px;
        display: flex;
        flex-direction: column-reverse;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.no-wrap {
    white-space: nowrap;
}

.hero-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-benefits {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 153, 102, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: flex-start;
    }
}

.benefit-icon {
    font-size: 1.3rem;
}

.hero-trust {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
        order: -1;
    }
}

.phone-mockup {
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
    z-index: 2;
}

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

/* Decorative Elements Behind Phone */
.green-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #009966;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .green-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .green-circle {
        width: 280px;
        height: 280px;
        opacity: 0.8;
    }
}

@keyframes pulseCircle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .floating-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: none;
    }
}

.floating-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .floating-icon i {
        font-size: 1.5rem;
    }
}

.icon-shield {
    top: 5%;
    right: -35px;
    animation: floatIcon1 5s ease-in-out infinite;
}

.icon-chat {
    bottom: 5%;
    left: -35px;
    animation: floatIcon2 6s ease-in-out infinite 1s;
}

@keyframes floatIcon1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes floatIcon2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

.floating-icon:hover {
    transform: scale(1.1);
}

.phone-frame {
    width: 380px;
    height: 760px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

@media (max-width: 768px) {
    .phone-frame {
        width: 320px;
        height: 640px;
        border-radius: 30px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 280px;
        height: 560px;
        border-radius: 25px;
        padding: 8px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

/* Placeholder for video - shows WhatsApp green background */
.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    z-index: -1;
}

.hero-subtitle-h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-features {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-benefits li,
.hero-features li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.2s backwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s backwards;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 8px 30px rgba(0, 153, 102, 0.3);
}

@media (max-width: 768px) {
    .hero-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin: 0 auto;
    }
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 153, 102, 0.4);
    background: var(--gradient-hover);
}

.hero-button i {
    font-size: 1.3rem;
}

@media (max-width: 480px) {
    .hero-button i {
        font-size: 1.1rem;
    }
}

/* Alternate hero section used on many SEO pages */
.hero-section-alt {
    padding: calc(var(--navbar-height) + env(safe-area-inset-top)) 0 40px; /* keep content below fixed navbar */
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero-section-alt {
        padding: calc(var(--navbar-height) + env(safe-area-inset-top)) 0 30px;
    }
}

@media (max-width: 480px) {
    .hero-section-alt {
        padding: calc(var(--navbar-height) + env(safe-area-inset-top)) 0 20px;
    }
}


.hero-tagline {
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-graphics {
    position: relative;
    margin-top: 3rem;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    opacity: 0.6;
}

.icon-1 {
    top: -50px;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: -30px;
    right: 15%;
    animation-delay: 0.5s;
}

.icon-3 {
    top: 30px;
    left: 20%;
    animation-delay: 1s;
}

.icon-4 {
    top: 40px;
    right: 10%;
    animation-delay: 1.5s;
}

/* Key Features Highlight */
.key-features {
    padding: 80px 0;
    background: var(--white);
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.key-feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.key-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 153, 102, 0.15);
    border-color: var(--primary-color);
}

.key-feature-card.highlighted {
    background: var(--gradient);
    color: var(--white);
}

.key-feature-card.highlighted h3,
.key-feature-card.highlighted p {
    color: var(--white);
}

.key-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.key-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.key-feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.key-feature-card.highlighted .learn-more {
    color: var(--white);
}

.learn-more:hover {
    transform: translateX(5px);
    display: inline-block;
}

/* Free Trial Banner */
.free-trial-banner {
    background: var(--gradient);
    padding: 60px 0;
    text-align: center;
}

.banner-content {
    color: var(--white);
}

.banner-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.banner-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.banner-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.banner-button i {
    font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 153, 102, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.step-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 153, 102, 0.12);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--gradient);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 153, 102, 0.3);
}

.step-card h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.step-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* User Experience Section */
.user-experience {
    padding: 100px 0;
    background: var(--white);
}

.ux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.ux-card {
    background: linear-gradient(135deg, #F7F9F8 0%, #e8f5ef 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ux-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 153, 102, 0.2);
}

.ux-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ux-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.ux-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ux-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ux-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 153, 102, 0.3);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features .section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 153, 102, 0.2);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.1) 0%, rgba(0, 153, 102, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b377 100%);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 153, 102, 0.15);
    border-color: var(--primary-color);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-value {
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-author h4 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-main-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cta-main-button i {
    font-size: 1.3rem;
}

.trust-badge {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

.footer-values {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.footer-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 153, 102, 0.3);
}

.footer-phone,
.footer-email {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.footer-address {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Policy Pages */
.policy-page {
    padding: 120px 0 80px;
    background: var(--light-bg);
    min-height: 100vh;
}

.policy-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.policy-content h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #00b377;
    text-decoration: underline;
}

.contact-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.contact-details p {
    margin-bottom: 0.75rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(31, 41, 51, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    padding: 1rem 1.5rem;
    z-index: 1;
    background: var(--white);
    border-radius: 0 25px 0 0;
    transition: all 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem 3rem 3rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-body h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
}

.modal-body h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-body h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body li {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.modal-body li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.modal-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
}

.modal-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

/* SEO Locations Section */
.seo-locations {
    padding: 80px 0;
    background: var(--light-bg);
}

.seo-locations .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.seo-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.seo-column {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.seo-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 153, 102, 0.15);
}

.seo-column h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
}

.seo-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.seo-column li {
    margin-bottom: 0.8rem;
}

.seo-column a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.2s ease;
    display: inline-block;
}

.seo-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    font-weight: 600;
}

/* Responsive SEO Grid */
@media (max-width: 768px) {
    .seo-locations {
        padding: 60px 0;
    }

    .seo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .seo-column {
        padding: 1.5rem;
    }

    .seo-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .seo-column a {
        font-size: 0.9rem;
    }
}

/* Animations */

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        width: 340px;
        height: 680px;
    }
    
    .green-circle {
        width: 350px;
        height: 350px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-icon i {
        font-size: 1.3rem;
    }
    
    .icon-shield {
        right: 5%;
        top: 5%;
    }
    
    .icon-chat {
        left: 5%;
        bottom: 5%;
    }

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

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

    .hero-benefits {
        justify-content: center;
    }

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

    .cta-subtitle {
        font-size: 1.3rem;
    }

    .features-grid,
    .key-features-grid,
    .steps-grid,
    .ux-grid,
    .testimonials-grid,
    .problems-grid,
    .audience-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 10;
    clear: both;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0 40px !important;
        background: #ffffff !important;
        position: relative;
        z-index: 10;
        margin-top: 0;
    }
}

.about-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.about-badge {
    display: inline-block;
    background: rgba(0, 153, 102, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.about-description {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-details {
    text-align: left;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.about-details h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.about-details > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.about-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 4px 12px rgba(0, 153, 102, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-details {
        padding: 2rem;
    }

    .about-features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.2rem;
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.problem-section .section-title {
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.problem-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 153, 102, 0.2);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.solution-banner {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gradient);
    border-radius: 20px;
}

.solution-banner p {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.problem-solution {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

/* Why Different Section */
.why-different {
    padding: 100px 0;
    background: var(--white);
}

.why-different .section-title {
    text-align: center;
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.audience-section .section-title {
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 153, 102, 0.12);
}

.audience-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

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

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    font-size: 1.2rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 153, 102, 0.15);
    transform: translateY(-5px);
}

.faq-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* CTA Utilities */
.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.secondary-button {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 153, 102, 0.3);
}

.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 153, 102, 0.4);
    background: var(--gradient-hover);
}

.secondary-button i {
    font-size: 1.2rem;
}

.cta-tagline {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer Updates */
.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.5rem 0;
}

.footer-values {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* SEO Page Styles */
.seo-page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b377 100%);
    color: var(--white);
    padding: 80px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.seo-page-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    display: inline-block;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.seo-page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.seo-page-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    text-align: left;
}

.seo-page-hero .hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.seo-page-hero .hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.content-main {
    line-height: 1.8;
}

.content-main h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.content-main h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-main p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.benefits-list,
.localities-list,
.steps-list {
    margin-bottom: 2rem;
}

.benefits-list li,
.localities-list li,
.steps-list li {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.localities-list,
.steps-list {
    margin-left: 2rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.sidebar-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sidebar-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.sidebar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.sidebar-button:hover {
    background: #00b377;
    transform: translateY(-2px);
}

.quick-facts,
.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts li,
.related-links li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.related-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.related-links a:hover {
    color: #00b377;
    text-decoration: underline;
}

/* SEO FAQ Section */
.seo-faq {
    padding: 80px 0;
    background: var(--light-bg);
}

.seo-faq h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 153, 102, 0.15);
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive SEO Pages */
@media (max-width: 768px) {
    .seo-page-hero {
        padding: 60px 0 40px;
        margin-top: 60px;
    }

    .seo-page-hero h1 {
        font-size: 2rem;
    }

    .seo-page-hero .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .seo-page-hero .hero-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-main h2 {
        font-size: 1.7rem;
    }

    .content-main h3 {
        font-size: 1.3rem;
    }

    .content-main p {
        font-size: 1rem;
    }

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

    .seo-content {
        padding: 60px 0;
    }

    .seo-faq {
        padding: 60px 0;
    }

    .sidebar {
        margin-top: 3rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .modal-body {
        padding: 1.5rem 1.5rem 2rem;
    }
    
    .modal-icon {
        font-size: 3rem;
    }
    
    .modal-body h2 {
        font-size: 2rem;
    }
    
    .modal-body h3 {
        font-size: 1.5rem;
    }
    
    .modal-body h4 {
        font-size: 1.2rem;
    }
    
    .modal-body p,
    .modal-body li {
        font-size: 1rem;
    }
    
    .modal-close {
        font-size: 2rem;
        padding: 0.75rem 1rem;
    }
}

/* Extra Small Devices (Mobile Phones) - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar .container {
        gap: 0.5rem;
    }

    .hero {
        padding: 60px 0 150px !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        overflow: visible !important;
    }

    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

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

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 0.8rem;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 1rem;
    }

    .benefit-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        margin-top: 0.5rem;
    }

    .hero-visual {
        display: none;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
    }

    .phone-screen video {
        width: 100%;
        height: 100%;
    }

    .green-circle {
        width: 280px;
        height: 280px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon i {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .features-grid,
    .key-features-grid,
    .steps-grid,
    .ux-grid,
    .testimonials-grid,
    .problems-grid,
    .audience-grid,
    .faq-grid {
        gap: 1.5rem;
    }

    .feature-card,
    .ux-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3,
    .ux-card h3,
    .testimonial-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p,
    .ux-card p,
    .testimonial-card p {
        font-size: 0.9rem;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .seo-page-hero {
        padding: 50px 0 30px;
        margin-top: 60px;
    }

    .seo-page-hero h1 {
        font-size: 1.7rem;
    }

    .seo-page-hero .hero-subtitle {
        font-size: 0.95rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .content-grid {
        gap: 1.5rem;
    }

    .content-main h2 {
        font-size: 1.4rem;
    }

    .content-main h3 {
        font-size: 1.1rem;
    }

    .content-main p {
        font-size: 0.95rem;
    }

    .sidebar-card {
        padding: 1.2rem;
    }

    .sidebar-card h4 {
        font-size: 1rem;
    }

    .sidebar-card p,
    .sidebar-card li {
        font-size: 0.9rem;
    }

    .modal-content {
        width: 98%;
        margin: 10% auto;
        padding: 1.5rem;
    }

    .modal-body h2 {
        font-size: 1.4rem;
    }

    .modal-body h3 {
        font-size: 1.1rem;
    }

    .modal-body p,
    .modal-body li {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

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

    .banner-content h2 {
        font-size: 1.5rem;
    }

    .banner-content p {
        font-size: 0.95rem;
    }
}

/* Success Stories Page */
.success-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b377 100%);
    color: var(--white);
    padding: 140px 0 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    background: var(--white);
    top: -150px;
    right: -100px;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: var(--white);
    bottom: -80px;
    left: -80px;
}

.success-hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.success-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.success-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-header-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.story-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 153, 102, 0.2);
}

.story-card-1 {
    border-left-color: #009966;
}

.story-card-2 {
    border-left-color: #00b896;
}

.story-card-3 {
    border-left-color: #009966;
}

.story-card-4 {
    border-left-color: #00b896;
}

.story-card-5 {
    border-left-color: #009966;
}

.story-card-6 {
    border-left-color: #00b896;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.15) 0%, rgba(0, 153, 102, 0.08) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 153, 102, 0.2);
    white-space: nowrap;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.story-avatar {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.1) 0%, rgba(0, 153, 102, 0.05) 100%);
    border-radius: 50%;
}

.avatar-1 { color: #009966; }
.avatar-2 { color: #00b896; }
.avatar-3 { color: #009966; }
.avatar-4 { color: #00b896; }
.avatar-5 { color: #009966; }
.avatar-6 { color: #00b896; }

.story-info h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.story-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.story-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-tag {
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.1) 0%, rgba(0, 153, 102, 0.05) 100%);
    color: var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 153, 102, 0.15);
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.detail-tag:hover {
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.2) 0%, rgba(0, 153, 102, 0.1) 100%);
    border-color: rgba(0, 153, 102, 0.3);
}

.detail-tag i {
    font-size: 0.8rem;
}

.story-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 2px solid var(--light-bg);
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.rating-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Success Benefits Section - Redesigned as 3 Easy Steps */
.how-it-works-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(0, 153, 102, 0.03) 100%);
}

.section-header-benefits {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header-benefits .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header-benefits .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Grid - 3 Easy Steps Section */
.steps-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
}

.steps-benefits-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 0;
}

.step-benefit-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 4px solid var(--primary-color);
}

.step-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 153, 102, 0.15);
}

.step-number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b896 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.step-benefit-card h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 3.5rem;
    margin-top: 1.5rem;
}

/* Why Section */
.why-section {
    background: var(--white);
    padding: 5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-section .section-title {
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.05) 0%, rgba(0, 153, 102, 0.02) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 153, 102, 0.1);
}

.why-item:hover {
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.1) 0%, rgba(0, 153, 102, 0.05) 100%);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-item h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Success CTA Section */
.success-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b896 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.success-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.success-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.success-cta > .container {
    position: relative;
    z-index: 1;
}

.success-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.success-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Responsive Success Stories */
@media (max-width: 768px) {
    .hero-decoration-1 {
        width: 250px;
        height: 250px;
        top: -100px;
        right: -50px;
    }

    .hero-decoration-2 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -60px;
    }

    .success-hero {
        padding: calc(var(--navbar-height) + 20px) 0 80px 0;
        scroll-margin-top: calc(var(--navbar-height) + 20px);
    }

    .success-hero-content h1 {
        font-size: 2.5rem;
    }

    .success-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

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

    .success-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem;
    }

    .story-card {
        padding: 2rem;
    }

    .story-header {
        gap: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .story-avatar {
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }

    .story-info h3 {
        font-size: 1.1rem;
    }

    .story-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .detail-tag {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .success-cta {
        padding: 80px 0;
    }

    .success-cta h2 {
        font-size: 2rem;
    }

    .success-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        gap: 2rem;
    }

    .steps-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .steps-benefits-grid::before {
        display: none;
    }

    .step-benefit-card {
        padding: 2.5rem 2rem;
    }

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

    .why-section {
        padding: 3rem 2rem;
    }

    .benefit-item {
        padding: 2.5rem 2rem;
    }

    .benefit-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .benefit-item h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .success-hero {
        padding: calc(var(--navbar-height) + 20px) 0 60px 0;
        scroll-margin-top: calc(var(--navbar-height) + 20px);
    }

    .success-hero-content h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .success-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .story-card {
        padding: 1.25rem;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    }

    .story-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 0.75rem;
        display: inline-block;
    }

    .story-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .story-avatar {
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .story-info h3 {
        font-size: 0.95rem;
        margin: 0 0 0.2rem 0;
    }

    .story-location {
        font-size: 0.8rem;
    }

    .story-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .detail-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .story-rating {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .stars {
        font-size: 1rem;
    }

    .how-it-works-benefits {
        padding: 60px 0;
    }

    .section-header-benefits {
        margin-bottom: 3rem;
    }

    .steps-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .step-benefit-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .step-number-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .step-benefit-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .step-benefit-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .step-icon {
        font-size: 3rem;
    }

    .why-section {
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
    }

    .why-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .why-item {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .why-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .why-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .why-item p {
        font-size: 0.85rem;
    }

    .success-cta {
        padding: 60px 0;
    }

    .success-cta h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .success-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-header-wrapper {
        margin-bottom: 2rem;
    }
}

/* Internal Linking Section Styles */
.internal-links-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.05) 0%, rgba(0, 153, 102, 0.02) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.internal-links-section h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.inline-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.inline-links li {
    margin: 0;
    position: relative;
}

.inline-links li::before {
    content: none !important;
    display: none !important;
}

.inline-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.inline-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 102, 0.2);
}

/* Sidebar Related Links Enhancement */
.related-links a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.related-links a::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.related-links a:hover {
    color: var(--primary-color);
    padding-left: 2rem;
}

.related-links a:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .internal-links-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .inline-links {
        gap: 0.75rem;
    }

    .inline-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Blog Section Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b377 100%);
    color: var(--white);
    padding: calc(var(--navbar-height-desktop) + 30px) 0 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.blog-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.blog-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spotlight-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.spotlight-banner {
    background: linear-gradient(135deg, #009966 0%, #00b377 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    height: 350px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 153, 102, 0.15);
}

.spotlight-image-wrapper {
    flex: 0 0 45%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

.spotlight-banner:hover .spotlight-image {
    transform: scale(1.05);
}

.spotlight-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    color: #FF8C00;
    padding: 0.4rem 0.9rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.spotlight-content {
    flex: 1;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    background: none;
}

.spotlight-content h2 {
    font-size: 1.9rem;
    margin: 0 0 1rem 0;
    line-height: 1.25;
    font-weight: 700;
}

.spotlight-description {
    font-size: 0.95rem;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
    opacity: 0.95;
}

.spotlight-meta {
    display: flex;
    gap: 1.5rem;
    margin: 0.75rem 0;
    font-size: 0.85rem;
    opacity: 0.85;
}

.spotlight-button {
    display: inline-block;
    background: white;
    color: #009966;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    border: 2px solid transparent;
}

.spotlight-button:hover {
    background: #009966;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 153, 102, 0.25);
}

.spotlight-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .spotlight-banner {
        flex-direction: column;
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .spotlight-image-wrapper {
        flex: 1;
        width: 100%;
        height: 220px;
        position: relative;
        z-index: 1;
        order: 1;
    }

    .spotlight-content {
        padding: 2rem 1.5rem !important;
        background: linear-gradient(135deg, #009966 0%, #00b377 100%) !important;
        z-index: 2;
        position: relative;
        margin-top: 0;
        min-height: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        order: 2;
    }

    .spotlight-content h2,
    .spotlight-content h3 {
        font-size: 1.25rem !important;
        margin: 0 0 0.8rem 0 !important;
        line-height: 1.3;
        color: white !important;
        font-weight: 700 !important;
    }

    .spotlight-description {
        font-size: 0.9rem !important;
        margin: 0 0 1rem 0 !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .spotlight-meta {
        flex-direction: row;
        gap: 1rem;
        font-size: 0.8rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .spotlight-badge {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        display: inline-block;
        background: transparent !important;
        color: #FF8C00 !important;
        padding: 0.15rem 0.4rem !important;
        font-size: 0.85rem !important;
        z-index: 30;
        font-weight: 700 !important;
        border-radius: 20px;
        white-space: nowrap;
        line-height: 1 !important;
    }

    .spotlight-button {
        margin-left: 0;
        margin-right: 0;
        width: auto;
        margin-top: 0.5rem;
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        background: white;
        color: #009966;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .spotlight-button:hover {
        background: #009966;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 153, 102, 0.25);
    }

    .spotlight-button:active {
        transform: translateY(0);
    }
}

.blog-section {
    padding: 3rem 2rem;
}

.blog-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #009966;
    text-align: center;
}

.blog-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #009966;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-card {
    background: white;
    border: 1px solid #E8EAED;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 153, 102, 0.12);
}

.blog-card .blog-category {
    display: inline-block;
    background: #E0F2F1;
    color: #00796B;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: #1F2933;
    line-height: 1.4;
}

.blog-card h3 a {
    color: #009966;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: #006644;
    text-decoration: underline;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E8EAED;
    font-size: 0.85rem;
    color: #999;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.newsletter-section {
    background: linear-gradient(135deg, #009966 0%, #006644 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 8px;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-button {
    display: inline-block;
    background: white;
    color: #009966;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Article Page Styling */
.article-container {
    max-width: 800px;
    margin: 140px auto 0;
    padding: 0 20px;
    min-height: calc(100vh - 200px);
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E8EAED;
    position: relative;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #00b377 100%);
}

.article-breadcrumb {
    display: inline-block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.article-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: #006644;
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    max-width: 100%;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b377 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.article-read-time,
.article-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Article Content Styling */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F7F9F8;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem 0;
    padding-top: 1rem;
    line-height: 1.3;
    position: relative;
    padding-left: 0;
}

.article-content h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h2 a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #00b377 100%);
    border-radius: 2px;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.article-content ul li {
    list-style-type: none;
    padding-left: 1.5rem;
    position: relative;
}

.article-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.article-content ol li {
    list-style-type: decimal;
}

.article-content strong {
    font-weight: 700;
    color: var(--text-dark);
}

.article-content em {
    font-style: italic;
    color: #666;
}

/* Article CTA Section */
.article-cta {
    background: linear-gradient(135deg, rgba(0, 153, 102, 0.05) 0%, rgba(0, 179, 119, 0.05) 100%);
    border: 2px solid var(--primary-color);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.article-cta h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.article-cta p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b377 100%);
    color: #ffffff !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 153, 102, 0.2);
    border: none;
    cursor: pointer;
}

.article-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 153, 102, 0.3);
    background: linear-gradient(135deg, #00b377 0%, var(--primary-color) 100%);
}

.article-button:active {
    transform: translateY(-1px);
}

/* Article Sidebar Stats (if needed) */
.article-stats-box {
    background: #F7F9F8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.article-stats-box strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-stats-box p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Code block styling (if needed) */
.article-content code {
    background: #F3F3F3;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #D73A49;
}

/* Responsive table styling */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.article-content table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b377 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.article-content table td {
    padding: 1rem;
    border-bottom: 1px solid #E8EAED;
    color: var(--text-dark);
}

.article-content table tr:last-child td {
    border-bottom: none;
}

.article-content table tr:hover td {
    background: #F7F9F8;
}

/* Quote styling */
.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    background: #F7F9F8;
    margin: 2rem 0;
    border-radius: 4px;
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
}

/* Highlight box styling */
.article-highlight {
    background: #FFF9E6;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-weight: 500;
}

/* Add section dividers */
.article-content::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E8EAED, transparent);
    margin: 3rem 0 0 0;
}

/* Image styling for articles */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    display: block;
}

/* Link styling in articles */
.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.article-content a:hover {
    border-bottom-color: var(--primary-color);
    padding-bottom: 2px;
}

/* Author bio box */
.author-bio {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: #F7F9F8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00b377 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Related Articles Section */
.related-articles {
    margin-top: 4rem;
    margin-bottom: 6rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 2px solid #E8EAED;
    border-bottom: 1px solid #E8EAED;
}

.related-articles h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 0;
}

.related-articles h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: -12px;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #00b377 100%);
    border-radius: 2px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-article-card {
    background: #F7F9F8;
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.related-article-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-article-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-article-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Social Share Section */
.social-share {
    margin: 3rem 0;
    padding: 2rem;
    background: #F7F9F8;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.social-share h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn i {
    font-size: 1rem;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #20ba58;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.facebook:hover {
    background: #0a66c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
    background: #000000;
    color: white;
}

.share-btn.twitter:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn.linkedin {
    background: #0A66C2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.share-btn.email {
    background: #EA4335;
    color: white;
}

.share-btn.email:hover {
    background: #c5221f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

@media (max-width: 768px) {
    .social-share {
        padding: 1.5rem;
    }

    .share-buttons {
        gap: 0.75rem;
    }

    .share-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .share-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .share-buttons {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-container {
        margin: 120px auto 0;
    }

    .article-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .article-intro {
        font-size: 1.05rem;
        padding: 1rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.8rem 0;
    }

    .article-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .article-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .article-cta h3 {
        font-size: 1.3rem;
    }

    .article-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .article-content table {
        font-size: 0.9rem;
    }

    .article-content table th,
    .article-content table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: 0 15px;
    }

    .article-header h1 {
        font-size: 1.4rem;
    }

    .article-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .article-content h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.5rem 0;
    }

    .article-content h3 {
        font-size: 1.05rem;
    }

    .article-intro {
        font-size: 0.95rem;
        padding: 1rem;
        border-left-width: 3px;
    }

    .article-cta {
        padding: 1rem;
    }

    .article-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .article-breadcrumb {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: calc(var(--navbar-height-tablet) + 35px) 0 80px 0;
        margin-top: 0;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .blog-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .blog-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .blog-section {
        padding: 2rem 1rem;
    }

    .blog-section h2,
    .blog-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .blog-card {
        padding: 1.25rem;
        border-radius: 6px;
    }

    .blog-card h3 {
        font-size: 1rem;
        margin: 0.75rem 0;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }

    .property-types {
        flex-direction: column;
    }

    .property-types ul {
        width: 100%;
    }

    .search-card,
    .info-card {
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: calc(var(--navbar-height-mobile) + 35px) 0 60px 0;
        margin-top: 0;
    }

    .blog-hero h1 {
        font-size: 1.6rem;
    }

    .blog-subtitle {
        font-size: 0.9rem;
    }

    .spotlight-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
}

/* ============================================
   ENHANCED LOCALITY PAGE STYLING
   ============================================ */

/* Hero Section Enhancement */
.seo-page-hero {
    background: linear-gradient(135deg, #009966 0%, #00b377 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.seo-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.seo-page-hero .container {
    position: relative;
    z-index: 1;
}

.seo-page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideInDown 0.6s ease-out;
}

.seo-page-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    max-width: 800px;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.seo-page-hero .hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.seo-page-hero .hero-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: #f0f0f0;
}

.seo-page-hero .hero-button i {
    font-size: 1.2rem;
}

/* Property Types Section Enhancement */
.property-types {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: slideInUp 0.6s ease-out 0.5s both;
}

.property-types ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.property-types li {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.property-types li:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.4);
}

.property-types a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Content Section Enhancement */
.seo-content {
    padding: 100px 0;
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.content-main {
    line-height: 1.85;
}

.content-main h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.content-main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00b377);
    border-radius: 2px;
}

.content-main h3 {
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.content-main h3::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-right: 12px;
}

.content-main p {
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-size: 1.08rem;
    line-height: 1.8;
}

.content-main ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.content-main li {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.content-main li:not(.inline-links li):not(ol li)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.content-main strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Sidebar Enhancement */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.search-card,
.info-card {
    background: var(--light-bg);
    padding: 2.2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,153,102,0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.search-card:hover,
.info-card:hover {
    box-shadow: 0 8px 30px rgba(0,153,102,0.15);
    transform: translateY(-2px);
}

.search-card h3,
.info-card h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.search-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.button-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color), #00b377);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,153,102,0.3);
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.locality-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.locality-links li {
    background: var(--white);
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.locality-links li:hover {
    background: var(--primary-color);
}

.locality-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.locality-links li:hover a {
    color: var(--white);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Locality Pages */
@media (max-width: 768px) {
    .seo-page-hero h1 {
        font-size: 2.2rem;
    }

    .seo-page-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .property-types ul {
        gap: 1rem;
    }

    .property-types li {
        padding: 10px 18px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-sidebar {
        position: static;
        top: auto;
    }

    .content-main h2 {
        font-size: 1.8rem;
    }

    .content-main h3 {
        font-size: 1.3rem;
    }

    .search-card,
    .info-card {
        padding: 1.8rem;
    }
}

/* ========== MOBILE & PERFORMANCE OPTIMIZATIONS ========== */

/* Prevent Cumulative Layout Shift (CLS) */
img {
    aspect-ratio: auto;
    max-width: 100%;
    height: auto;
}

video {
    max-width: 100%;
    height: auto;
}

/* Optimize font loading */
@font-face {
    font-display: swap;
}

/* Improve mobile touch targets (WCAG) */
button, 
a[role="button"], 
input[type="button"], 
input[type="submit"],
input[type="reset"],
.cta-button,
.btn {
    min-height: 48px;
    min-width: 48px;
    padding: 12px 16px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Respect user's motion preferences (accessibility) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f0f0f;
        color: #e0e0e0;
    }
}

/* Data saver mode */
@media (prefers-reduced-data: reduce) {
    *,
    *::before,
    *::after {
        background-attachment: scroll !important;
        animation: none !important;
    }
}

/* Mobile optimization */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    body {
        font-size: 16px; /* Prevent auto-zoom on input focus in iOS Safari */
    }
    
    /* Safe area for notched devices */
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    /* Ensure readable text */
    p, span, a, button {
        font-size: 16px;
    }
    
    /* Stack layout for mobile */
    .container {
        padding: 0 16px;
    }
}

/* Tablet optimization */
@media (min-width: 481px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-float i {
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile responsiveness for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* Mobile Video Section */
.mobile-video-section {
    display: none;
    padding: 40px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    clear: both;
}

.mobile-video-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.mobile-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Show mobile video only on mobile devices */
@media (max-width: 768px) {
    .mobile-video-section {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .mobile-video-section {
        display: block;
        padding: 20px 16px;
        margin-top: 0;
    }
    
    .mobile-video-wrapper {
        border-radius: 8px;
    }
}
