/* CSS Custom Properties for Theming - Exact Figma Design Colors */
:root {
    /* Color Palette - Exact Figma Colors */
    --primary-bg: #F6FCFF;
    --header-bg: #D9EEF9;
    --text-primary: #142141;
    --text-secondary: #25395C;
    --text-accent: #33586B;
    --cta-primary: #33586B;
    --cta-secondary: #4D6DA6;
    --white: #FFFFFF;
    
    /* Status Colors */
    --status-success: #4CAF50;
    --status-warning: #FF9800;
    --status-error: #F44336;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: var(--font-size-base);
    width: 100%;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-button, .primary-cta {
    background-color: var(--cta-primary);
    color: var(--text-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    font-size: var(--font-size-base);
    border-radius: var(--border-radius-lg);
}

.cta-button:hover, .primary-cta:hover {
    background-color: var(--cta-secondary);
    transform: translateY(-1px);
}

.app-store-btn {
    background-color: transparent;
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
}

.app-store-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 62px;
}

.header-background {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 62px;
    left: 0;
    top: 0;
    background: #D9EEF9;
    border: 1px solid #4B5563;
    z-index: 1;
}

.header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1457.37px;
    margin: 0 auto;
    padding: 8.84px 40px;
    height: 62px;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9.48px;
    width: 302.89px;
    height: 44.31px;
}

.logo-icon {
    width: 44.89px;
    height: 44.31px;
    border-radius: 164.5px;
    border: 1px solid #33586B;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header .logo-text {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    color: #2C4A5E !important;
    letter-spacing: -0.5px !important;
    text-shadow: none !important;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 26.63px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-list li {
    flex-shrink: 0;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #142141;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
}

.nav-link:hover {
    color: #33586B;
}

.header-cta {
    display: flex;
    align-items: center;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 2.182;
    padding: 14px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--cta-primary);
    color: var(--header-bg);
}

.btn-primary:hover {
    background-color: #4B5563;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.mobile-menu-toggle:hover span {
    background-color: var(--cta-primary);
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 8.84px var(--spacing-md);
    }
    
    .logo {
        width: auto;
        gap: var(--spacing-sm);
    }
    
    .logo-text {
        font-size: 18px;
    }
}

.brand-name {
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--text-primary);
}

.nav-menu {
    display: none;
    gap: var(--spacing-lg);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-bg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: none;
    padding: var(--spacing-sm);
}

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

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

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

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    min-height: 808px;
    background: transparent;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 746px;
    left: 0;
    top: 0;
    background: #D9D9D9;
    filter: blur(2px);
    z-index: 1;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('assets/hero-background-1c84c5.png') no-repeat center;
    background-size: cover;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 231px;
    left: -75px;
    top: 639px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(35px);
    z-index: 2;
    border-radius: 50%;
}

.ellipse-1 {
    position: absolute;
    width: 260px;
    height: 231px;
    left: 647px;
    top: -53.67px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(35px);
    z-index: 2;
    border-radius: 50%;
}

.ellipse-2 {
    position: absolute;
    width: 260px;
    height: 230px;
    left: 1131px;
    top: 486px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(35px);
    z-index: 2;
    border-radius: 50%;
}

.ellipse-3 {
    position: absolute;
    width: 260px;
    height: 231px;
    left: 1428px;
    top: -425px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(35px);
    z-index: 2;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 746px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.hero-left {
    position: relative;
    width: 568.82px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.hero-logo {
    position: relative;
    width: 580px;
    height: 580px;
    z-index: 3;
    transition: transform 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
}

.hero-logo:hover {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(20px 25px 15px rgba(0, 0, 0, 0.6));
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(15px 20px 8px rgba(0, 0, 0, 0.5));
    transition: filter 0.3s ease;
}

.hero-text {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Grandstander', cursive;
    font-weight: 700;
    font-size: 81.6495px;
    line-height: 64px;
    letter-spacing: -2.72165px;
    margin-bottom: 0;
    display: block;
}

.hero-title-meet {
    position: relative;
    display: block;
    color: #F9FDFE;
    text-shadow: 0px 3.62887px 3.62887px rgba(0, 0, 0, 0.25);
    margin-bottom: 0;
}

.hero-title-brand {
    position: relative;
    display: block;
    background: linear-gradient(90deg, #17283E 0%, #33586B 37.5%, #556DBC 60.58%, #1F364B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 1.81443px #FFFFFF;
    text-shadow: 0px 8.16495px 3.62887px rgba(0, 0, 0, 0.25), 0px 3.62887px 3.62887px rgba(0, 0, 0, 0.25);
    margin-bottom: 0;
}

.hero-description {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18.925px;
    line-height: 26px;
    color: #D9EEF9;
    margin-bottom: 0;
    margin-top: 16px;
}

.hero-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 446px;
    height: 134px;
}

.app-store-buttons {
    position: relative;
    width: 100%;
    height: 58px;
    display: flex;
    gap: 18px;
}

.app-store-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    height: 57px;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

.app-store-btn::after {
    content: '›';
    position: absolute;
    right: 12px;
    font-size: 28px;
    font-weight: bold;
    color: #D9EEF9;
}

.app-store {
    width: 209px;
    background-color: #141414;
    color: #D9EEF9;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.google-play {
    width: 210px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #D9EEF9;
    backdrop-filter: blur(10px);
}

.store-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.store-subtitle {
    font-family: 'SF Compact', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #D9EEF9;
}

.store-title {
    font-family: 'SF Compact', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #D9EEF9;
}

.email-signup {
    position: relative;
    width: 100%;
    height: 50px;
    margin-top: 12px;
}

.email-input-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    gap: 0;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.email-input {
    box-sizing: border-box;
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    outline: none;
    padding: 14px 18px;
    width: 265.36px;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.12);
}

.email-submit {
    position: relative;
    width: 182px;
    background: linear-gradient(135deg, #5B7BC7 0%, #4D6DA6 100%);
    color: #FFFFFF;
    border: none;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-submit:hover {
    background: linear-gradient(135deg, #6A8AD6 0%, #5B7BC7 100%);
    transform: translateX(2px);
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .hero-content {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .hero-left {
        left: 40px;
    }
    
    .hero-actions {
        left: 65px;
    }
    
    .hero-logo {
        left: auto;
        right: 20px;
        width: 520px;
        height: 520px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        height: auto;
        min-height: 900px;
    }
    
    .hero-left {
        position: relative;
        left: 0;
        top: 100px;
        width: 100%;
        max-width: 568.82px;
        margin: 0 auto;
    }
    
    .hero-logo {
        position: relative;
        left: 0;
        right: 0;
        top: 50px;
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }
    
    .hero-actions {
        position: relative;
        left: 0;
        top: 150px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 56px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
        min-height: 1000px;
    }
    
    .hero-left {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 38px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .hero-logo {
        width: 300px;
        height: 300px;
    }
    
    .hero-actions {
        width: 100%;
        max-width: 100%;
    }
    
    .app-store-buttons {
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 12px;
    }
    
    .app-store-btn {
        width: 100% !important;
    }
    
    .email-signup {
        width: 100%;
    }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    transform: rotate3d(0, 1, 0, -15deg) rotate3d(1, 0, 0, 5deg);
    transform-style: preserve-3d;
    filter: drop-shadow(15px 20px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: rotate3d(0, 1, 0, -10deg) rotate3d(1, 0, 0, 3deg);
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a7c59 0%, #3d6b4a 50%, #2d5038 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        inset 0 0 0 2px rgba(0, 0, 0, 0.3),
        inset 0 0 0 3px rgba(255, 255, 255, 0.1);
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2c4a5e 0%, #1e3447 100%);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.phone-side {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%) translateZ(-10px);
    width: 8px;
    height: 200px;
    background: linear-gradient(90deg, #2d5038 0%, #1a3020 100%);
    border-radius: 0 4px 4px 0;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.logo-character {
    position: relative;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #b8d4e8 0%, #8fb8d4 100%);
    border-radius: 50%;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.character-head {
    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #d4e8f5 0%, #a8c8e0 100%);
    border-radius: 50%;
    overflow: hidden;
}

.character-head::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: #ff9999;
    border-radius: 10px;
}

.character-head::after {
    content: '';
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #8fb8d4;
    border-radius: 0 0 30px 30px;
}

.character-glasses {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 35px;
    z-index: 2;
}

.character-glasses::before,
.character-glasses::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #2c4a5e;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.character-glasses::before {
    left: 0;
}

.character-glasses::after {
    right: 0;
}

.logo-text {
    font-family: 'Brush Script MT', cursive, var(--font-family);
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.app-header {
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-accent);
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.summary-card {
    background-color: var(--secondary-bg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--status-success);
}

.summary-card h3 {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-accent);
}

.summary-card p {
    font-size: var(--font-size-xs);
    margin: 0;
}

/* Section Styles */
section {
    padding: var(--spacing-3xl) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

section.hero {
    max-width: none;
    padding: 0;
    margin: 0;
}

section.how-it-works {
    max-width: none;
    margin: 0;
    margin-top: -60px;
}

section.features {
    max-width: none;
    padding: 0;
    margin: 0;
}

section.enterprise-tech-stack {
    max-width: none;
    margin: 0;
}

section.testimonials {
    max-width: none;
    margin: 0;
}

section.pricing {
    max-width: none;
    margin: 0;
}

section.faq {
    max-width: none;
    margin: 0;
}

section.final-cta {
    max-width: none;
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    color: var(--text-primary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    position: relative;
    padding: 60px 0;
    background-color: #F6FCFF;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 450px;
    background: radial-gradient(circle, rgba(77, 109, 166, 0.4) 0%, rgba(77, 109, 166, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -100px;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.how-it-works::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 450px;
    background: radial-gradient(circle, rgba(77, 109, 166, 0.4) 0%, rgba(77, 109, 166, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    top: 100px;
    right: -150px;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.how-it-works > .vector-gradient {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.how-it-works-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 1;
}

.how-it-works-header {
    text-align: center;
    max-width: 730px;
    margin: 0 auto 80px;
}

.how-it-works-header .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 51.5px;
    line-height: 31px;
    color: #142141;
    margin-bottom: 20px;
}

.how-it-works-header .section-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 19.5px;
    line-height: 24px;
    text-align: center;
    color: #142141;
}

.how-it-works-main {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
}

.steps-section {
    flex: 1;
    min-width: 400px;
}

.steps-container {
    position: relative;
    width: 580px;
    min-height: 641px;
    padding-left: 0;
}

.steps-line {
    position: absolute;
    width: 3px;
    height: 470px;
    left: 28px;
    top: 54px;
    background: #4D6DA6;
    border: none;
}

.steps-list {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.step {
    position: relative;
    display: flex;
    gap: 0;
    align-items: flex-start;
    background: transparent;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.step:hover {
    transform: none;
    box-shadow: none;
}

/* Individual Step Sizing */
.step-1 {
    min-height: 79px;
}

.step-2 {
    min-height: 55px;
}

.step-3 {
    min-height: 66px;
}

.step-4 {
    min-height: 72px;
}

.step-5 {
    min-height: 153px;
    margin-bottom: 0;
}

.step-circle {
    position: relative;
    width: 55.29px;
    height: 49.92px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Grandstander', sans-serif;
    font-weight: 900;
    font-size: 32.1665px;
    line-height: 10px;
    flex-shrink: 0;
    color: #4D6DA6;
    box-shadow: 0px 4.02081px 4.02081px rgba(0, 0, 0, 0.25), inset 0px 4.02081px 4.02081px rgba(0, 0, 0, 0.25);
    margin-right: 10px;
}

.step-number {
    display: flex;
    align-items: center;
    width: 28.15px;
    height: 11.8px;
}

.step-content {
    position: relative;
    flex: 1;
    padding-top: 0;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
    color: #3D538A;
    margin: 0 0 8px 0;
}

.step-1 .step-title {
    font-size: 36.1873px;
}

.step-description {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 25px;
    color: #365A9A;
    margin: 0;
}

.step-2 .step-description {
    font-weight: 700;
    line-height: 20px;
}

.step-description strong {
    font-weight: 700;
    color: #365A9A;
}

.step-description em {
    font-style: italic;
    font-weight: 300;
}

.steps-instruction {
    position: absolute;
    top: 100px;
    right: -200px;
    font-family: 'Grandstander', sans-serif;
    font-weight: 900;
    font-size: 21.17px;
    line-height: 22px;
    color: #4B6BA4;
    transform: rotate(-15.23deg);
    text-align: center;
    width: 127px;
    margin: 0;
}

.steps-instruction p {
    margin: 0;
}

.phone-mockup-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 352px;
    height: 761.76px;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(244, 244, 244, 0.2);
    border: 17.0517px solid #1B2F52;
    border-radius: 27.0769px;
    padding: 0;
    box-shadow: 0px 4.54712px 4.54712px rgba(0, 0, 0, 0.25), 13.5385px 9.02564px 8.12308px rgba(0, 0, 0, 0.5), inset 0px 3.61026px 3.61026px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.phone-header {
    display: none;
}

.phone-notch {
    display: none;
}

.phone-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #F5F5F5;
    border-radius: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-interface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #F5F5F5;
}

.app-header {
    text-align: center;
    background: #4D6DA6;
    padding: 30px 0 20px;
    margin: 0;
    width: 500%;
    margin-top: -55px;
    flex-shrink: 0;
}

.app-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.app-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px 0;
    overflow-y: auto;
}

/* Content Type Tabs */
.content-type-tabs {
    display: flex;
    gap: 0;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6B7280;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.tab-btn.active {
    background: #4D6DA6;
    color: #FFFFFF;
}

.tab-icon {
    width: 18px;
    height: 18px;
}

.tab-label {
    display: none;
}

/* Usage Badge */
.usage-badge {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-free {
    display: inline-block;
    background: #E5E7EB;
    color: #374151;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 6px;
    width: fit-content;
}

.badge-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    flex-shrink: 0;
}

.badge-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #10B981;
    font-weight: 500;
}

.usage-progress {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #10B981;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.usage-count {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
    text-align: right;
}

/* Summary Mode Section */
.summary-mode-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.mode-cards {
    display: flex;
    gap: 10px;
}

.mode-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 140px;
}

.mode-card.active {
    background: #4D6DA6;
    color: #FFFFFF;
}

.mode-card.locked {
    background: #F3F4F6;
    opacity: 0.7;
}

.lock-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #6B7280;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.lock-badge.premium {
    background: #8B5CF6;
}

.mode-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
}

.mode-card.active .mode-icon {
    color: #FFFFFF;
}

.mode-card.locked .mode-icon {
    color: #9CA3AF;
}

.mode-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: inherit;
}

.mode-card.active .mode-title {
    color: #FFFFFF;
}

.mode-card.locked .mode-title {
    color: #6B7280;
}

.mode-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: inherit;
    text-align: center;
}

.mode-card.active .mode-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.mode-card.locked .mode-subtitle {
    color: #9CA3AF;
}

.mode-words {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: inherit;
}

.mode-card.active .mode-words {
    color: rgba(255, 255, 255, 0.85);
}

.mode-card.locked .mode-words {
    color: #9CA3AF;
}

/* YouTube Input */
.youtube-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    pointer-events: none;
}

.youtube-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.youtube-input::placeholder {
    color: #9CA3AF;
}

.youtube-input:focus {
    outline: none;
    border-color: #4D6DA6;
}

/* Cache Toggle */
.cache-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.toggle-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toggle-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.toggle-description {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #6B7280;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: #D1D5DB;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch input {
    display: none;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
    transform: translateX(20px);
}

.toggle-switch input:checked ~ .toggle-switch {
    background: #4D6DA6;
}

/* Summarize Button */
.summarize-button {
    width: 100%;
    padding: 14px;
    background: #4D6DA6;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(77, 109, 166, 0.3);
}

.summarize-button:hover {
    background: #3d5a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(77, 109, 166, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0 0;
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    position: relative;
    margin-bottom: -40px;
    width: 140%;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    color: #9CA3AF;
}

.nav-btn:hover {
    color: #4D6DA6;
}

.nav-btn .nav-icon {
    width: 24px;
    height: 24px;
    background: none;
}

.nav-btn.center-btn {
    position: relative;
    margin-top: -30px;
}

.mascot-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #5B7BC7 0%, #4D6DA6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(77, 109, 166, 0.4);
    border: 4px solid #FFFFFF;
}

.mascot-face {
    width: 40px;
    height: 40px;
    background: #E8F0FE;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-eyes {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 6px;
}

.mascot-eyes::before,
.mascot-eyes::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #374151;
    border-radius: 50%;
}

.mascot-eyes::before {
    left: 0;
}

.mascot-eyes::after {
    right: 0;
}

.mascot-mouth {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    border: 2px solid #374151;
    border-top: none;
    border-radius: 0 0 16px 16px;
}

/* Decorative gradient vectors */
.vector-gradient {
    position: absolute;
    pointer-events: none;
}

.vector-left {
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(77, 109, 166, 0.35) 0%, rgba(77, 109, 166, 0.1) 50%, transparent 80%);
    filter: blur(100px);
    border-radius: 50%;
}

.vector-right {
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(77, 109, 166, 0.35) 0%, rgba(77, 109, 166, 0.1) 50%, transparent 80%);
    filter: blur(100px);
    border-radius: 50%;
}

.vector-bottom-left {
    display: none;
}

.vector-bottom-right {
    display: none;
}

/* Responsive adjustments for How It Works */
@media (max-width: 1200px) {
    .how-it-works-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps-section {
        min-width: auto;
    }
    
    .phone-mockup-section {
        width: 100%;
    }
    
    .steps-instruction {
        position: static;
        transform: none;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works-wrapper {
        padding: 0 20px;
    }
    
    .how-it-works-header {
        margin-bottom: 40px;
    }
    
    .how-it-works-header .section-title {
        font-size: 32px;
        line-height: 24px;
    }
    
    .how-it-works-header .section-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .steps-container {
        padding-left: 60px;
    }
    
    .steps-line {
        left: 15px;
    }
    
    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .step-description {
        font-size: 13px;
        line-height: 20px;
    }
    
    .phone-mockup {
        width: 280px;
        height: 600px;
    }
    
    .vector-left, .vector-right, .vector-bottom-left, .vector-bottom-right {
        display: none;
    }
}

/* Mid Email CTA */
.mid-email-cta {
    position: relative;
    width: 608px;
    height: 101.75px;
    margin: 80px auto 0;
}

.mid-cta-title {
    position: absolute;
    width: 569.08px;
    height: 24.53px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    font-family: 'Grandstander', cursive;
    font-style: normal;
    font-weight: 900;
    font-size: 26.1647px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25395C;
    margin: 0;
}

.mid-cta-container {
    position: absolute;
    width: 100%;
    top: 26.53px;
    left: 0;
}

.mid-cta-bg {
    position: relative;
    width: 582.16px;
    height: 75.22px;
    left: 50%;
    transform: translateX(-50%);
    background: #4D6DA6;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 14.7176px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.mid-email-input-wrapper {
    flex: 0 0 265.36px;
}

.mid-email-input {
    box-sizing: border-box;
    width: 265.36px;
    height: 44.91px;
    background: transparent;
    border: 1.02844px solid rgba(255, 255, 255, 0.7);
    border-radius: 8.22753px;
    padding: 12.3413px;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.mid-email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mid-email-input:focus {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
}

.mid-cta-button {
    position: relative;
    width: auto;
    height: auto;
    flex: 1;
    font-family: 'Grandstander', cursive;
    font-style: normal;
    font-weight: 900;
    font-size: 26.1647px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 0 10px;
}

.mid-cta-button:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.mid-cta-logo {
    position: relative;
    width: 55px;
    height: 57px;
    flex-shrink: 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mid-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments for Mid Email CTA */
@media (max-width: 768px) {
    .mid-email-cta {
        width: 90%;
        height: auto;
        min-height: 140px;
    }
    
    .mid-cta-title {
        position: relative;
        width: 100%;
        font-size: 20px;
        line-height: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mid-cta-container {
        position: relative;
        top: 0;
    }
    
    .mid-cta-bg {
        width: 100%;
        height: auto;
        min-height: 100px;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        position: relative;
        left: 0;
        transform: none;
    }
    
    .mid-email-input-wrapper {
        width: 100%;
        flex: 1;
    }
    
    .mid-email-input {
        width: 100%;
    }
    
    .mid-cta-button {
        position: relative;
        width: auto;
        left: 0;
        transform: none;
        margin-top: 0;
        font-size: 20px;
    }
    
    .mid-cta-button:hover {
        transform: scale(1.05);
    }
    
    .mid-cta-logo {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 45px;
        height: 47px;
        transform: none;
    }
}

/* Features */
.features {
    position: relative;
    width: 100%;
    max-width: 1280px;
    min-height: 1033px;
    padding: 80px 0 100px 0;
    margin: 0 auto;
    background: linear-gradient(180deg, #1C84C5 0%, #2D5F8E 100%);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.features-ellipse-1 {
    position: absolute;
    width: 217.94px;
    height: 319.87px;
    left: 31.85px;
    bottom: -100px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(66.5px);
    border-radius: 50%;
    z-index: 2;
}

.features-ellipse-2 {
    position: absolute;
    width: 217.94px;
    height: 319.87px;
    left: 637.07px;
    top: -160.16px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(66.5px);
    border-radius: 50%;
    z-index: 2;
}

.features-ellipse-3 {
    position: absolute;
    width: 217.94px;
    height: 318.49px;
    right: 237.22px;
    bottom: 445.88px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(66.5px);
    border-radius: 50%;
    z-index: 2;
}

.features-ellipse-4 {
    position: absolute;
    width: 217.94px;
    height: 319.87px;
    right: -11.74px;
    top: -674.36px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(66.5px);
    border-radius: 50%;
    z-index: 2;
}

.features-wrapper {
    position: relative;
    max-width: 1182px;
    margin: 0 auto;
    padding: 0 49px;
    z-index: 3;
}

.features-main-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 64px;
    line-height: 96px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 28px 0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.features-card-container {
    position: relative;
    width: 100%;
    max-width: 1182px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 48px 62px 60px 62px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.feature-row-1 {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: nowrap;
}

.feature-row-1 .feature-text-col {
    flex: 1;
    max-width: 480px;
    padding: 0;
}

.feature-row-1 .feature-image-col {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.feature-row-1 .feature-heading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 36px;
    line-height: 54px;
    color: #142141;
    margin: 0 0 16px 0;
}

.feature-row-1 .feature-text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(51, 88, 107, 0.7);
    margin: 0 0 12px 0;
}

.feature-row-1 .feature-text:last-child {
    margin-bottom: 0;
}

.feature-row-2 {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
}

.feature-row-2 .feature-image-col {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-row-2 .feature-text-col {
    flex: 1;
    padding: 0;
}

.feature-row-3 {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
}

.feature-row-3 .feature-text-col {
    flex: 1;
    padding: 0;
}

.feature-row-3 .feature-image-col {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-3rd-img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.feature-row-3 .feature-heading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 36px;
    line-height: 54px;
    color: #142141;
    margin: 0 0 16px 0;
}

.feature-row-3 .feature-text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(51, 88, 107, 0.7);
    margin: 0 0 12px 0;
}

.feature-text-col {
    flex: 1;
    min-width: 0;
}

.feature-image-col {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-heading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 36px;
    line-height: 54px;
    color: #142141;
    margin: 0 0 16px 0;
}

.feature-row-2 .feature-heading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 36px;
    line-height: 54px;
    color: #142141;
    margin: 0 0 16px 0;
}

.feature-text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(51, 88, 107, 0.7);
    margin: 0 0 12px 0;
}

.feature-row-2 .feature-text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(51, 88, 107, 0.7);
    margin: 0 0 12px 0;
}

.feature-text strong {
    font-weight: 700;
    font-style: italic;
    color: #142141;
}

.feature-character-img {
    width: auto;
    height: auto;
    max-width: 300px;
    object-fit: contain;
}

.feature-tabs-image {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.feature-row-1 .feature-tabs-image {
    max-width: 480px;
    width: auto;
    height: auto;
}

/* Mockup Container */
.mockup-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-tabs-container {
    width: 100%;
}

.mockup-buttons-container {
    width: 100%;
}

/* Mockup Tabs */
.mockup-tabs {
    display: flex;
    gap: 0;
    padding: 20px 24px;
    background: #FFFFFF;
    border-radius: 28px;
    border: 8px solid #2C4A5E;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
    position: relative;
}

.mockup-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #E8EEF5;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #5B7BC7;
    position: relative;
}

.mockup-tab.active {
    background: #5B7BC7;
    color: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(91, 123, 199, 0.4);
}

.mockup-tab.active::after {
    content: '👆';
    position: absolute;
    right: 12px;
    bottom: 8px;
    font-size: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.tab-icon {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.tab-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

/* Mockup Buttons */
.mockup-buttons {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #FFFFFF;
    border-radius: 20px;
    border: 4px solid #1E3447;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.mockup-btn {
    flex: 1;
    padding: 14px 20px;
    background: #E8EEF5;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #4D6DA6;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mockup-btn.active {
    background: #4D6DA6;
    color: #FFFFFF;
}

.mockup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Google Fact Check Integration */
.fact-check-integration {
    position: relative;
    padding: 100px 0;
    background-color: #F6FCFF;
    overflow: visible;
}

.gfci-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side */
.gfci-left {
    flex: 1;
    max-width: 600px;
}

.gfci-header {
    position: relative;
    margin-bottom: 50px;
}

.gfci-icon-group {
    position: absolute;
    left: 0;
    top: 0;
    width: 43.83px;
    height: 43.83px;
}

.gfci-icon-image {
    position: relative;
    width: 43.83px;
    height: 43.83px;
    object-fit: contain;
}

.gfci-heading-group {
    margin-left: 0;
    padding-left: 0;
}

.gfci-main-heading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 46.4604px;
    line-height: 35px;
    color: #142141;
    margin-bottom: 20px;
    margin-left: 48px;
}

.gfci-subheading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 17.5322px;
    line-height: 22px;
    color: rgba(51, 88, 107, 0.7);
    margin: 0;
}

/* Feature Cards */
.gfci-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gfci-feature-card {
    position: relative;
    width: 494.41px;
    height: 78.02px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 10px;
}

.gfci-feature-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 88, 107, 0.17);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 7.8895px;
    z-index: 0;
}

.gfci-feature-icon {
    position: relative;
    width: 31.79px;
    height: 41.24px;
    border-radius: 87.6611px;
    box-shadow: inset 0px 3.50645px 3.50645px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-shrink: 0;
}

.gfci-icon-green {
    background: #34A853;
}

.gfci-icon-blue {
    background: #4285F4;
}

.gfci-icon-red {
    background: #E40505;
}

.gfci-icon-circle-small {
    position: absolute;
    width: 22.79px;
    height: 21.92px;
    background: #D9EEF9;
    border-radius: 50%;
    transform: rotate(8.1deg);
}

.gfci-icon-check {
    position: relative;
    width: 9.64px;
    height: 14.03px;
    z-index: 2;
}

.gfci-icon-bars {
    width: 18.85px;
    height: 25.42px;
}

.gfci-icon-warning {
    width: 29.8px;
    height: 30.68px;
}

.gfci-icon-exclamation {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 13.1492px;
    line-height: 13px;
    color: #D9EEF9;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.gfci-feature-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.gfci-feature-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 17.5322px;
    line-height: 35px;
    color: #33586B;
    margin: 0 0 4px 0;
}

.gfci-feature-desc {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 13.1492px;
    line-height: 13px;
    color: rgba(51, 88, 107, 0.7);
    margin: 0;
}

/* Right Side - Fact Check Sample */
.gfci-right {
    position: relative;
    flex: 1;
    max-width: 480px;
}

.fact-check-sample-card {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 3.50645px 3.50645px rgba(0, 0, 0, 0.25);
    border-radius: 17.5322px;
    padding: 30px 28px;
}

.sample-card-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 17.5322px;
    line-height: 13px;
    color: #1D3C26;
    margin: 0 0 30px 0;
    text-align: center;
}

.sample-item {
    position: relative;
    padding: 16px;
    border-radius: 9.64273px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sample-green {
    background: rgba(85, 219, 121, 0.1);
    border: 0.876611px solid #25CC52;
}

.sample-yellow {
    background: rgba(219, 215, 85, 0.1);
    border: 0.876611px solid #CCC625;
}

.sample-red {
    background: rgba(219, 85, 85, 0.1);
    border: 0.876611px solid #CC2525;
}

.sample-icon-wrapper {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-icon-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.876611px solid #39B95B;
    border-radius: 50%;
}

.sample-check-icon {
    position: relative;
    width: 12px;
    height: 10px;
    z-index: 1;
}

.sample-warning-icon {
    width: 18px;
    height: 18px;
}

.sample-exclamation {
    position: absolute;
    font-family: 'Poltawski Nowy', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 8.76611px;
    line-height: 35px;
    color: #000000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%);
}

.sample-content {
    flex: 1;
}

.sample-claim {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 10.5193px;
    line-height: 13px;
    color: #142141;
    margin: 0 0 6px 0;
}

.sample-claim strong {
    font-weight: 800;
}

.sample-result {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 8.76611px;
    line-height: 13px;
    margin: 0;
}

.sample-verified {
    font-weight: 700;
    color: #39B95B;
}

.sample-disputed {
    font-weight: 700;
    color: #39B95B;
}

.sample-false {
    font-weight: 300;
    color: #E40505;
}

.sample-footer {
    margin-top: 30px;
    padding-top: 20px;
}

.sample-divider {
    border: none;
    border-top: 0.876611px solid #E3E3E3;
    margin: 0 0 15px 0;
}

.sample-footer-text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 11.3959px;
    line-height: 13px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Decorative Number Badge */
.gfci-number-badge {
    position: absolute;
    width: 87.2px;
    height: 89.84px;
    right: -40px;
    top: -30px;
    transform: rotate(21.33deg);
    z-index: 10;
    object-fit: contain;
}

/* Content Types - Summarize Any Content Type */
.content-types {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 626px;
    padding: 82px 0;
    overflow: hidden;
    background: #D9D9D9;
}

.content-types-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('assets/4th_bg.png') no-repeat center center;
    background-size: 100% 100%;
    z-index: 1;
}

/* Decorative Ellipses */
.content-types-ellipse-1 {
    position: absolute;
    width: 246.98px;
    height: 193.84px;
    left: -48.9px;
    top: calc(50% + 180px);
    background: rgba(85, 109, 188, 0.7);
    filter: blur(33.2473px);
    border-radius: 50%;
    z-index: 2;
}

.content-types-ellipse-2 {
    position: absolute;
    width: 246.98px;
    height: 193.84px;
    left: calc(50% - 300px);
    top: -90px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(33.2473px);
    border-radius: 50%;
    z-index: 2;
}

.content-types-ellipse-3 {
    position: absolute;
    width: 246.98px;
    height: 193px;
    left: calc(50% + 350px);
    top: calc(50% + 100px);
    background: rgba(85, 109, 188, 0.7);
    filter: blur(33.2473px);
    border-radius: 50%;
    z-index: 2;
}

.content-types-ellipse-4 {
    position: absolute;
    width: 246.98px;
    height: 193.84px;
    right: -50px;
    top: -200px;
    background: rgba(85, 109, 188, 0.7);
    filter: blur(33.2473px);
    border-radius: 50%;
    z-index: 2;
}

.content-types-wrapper {
    position: relative;
    max-width: 1450.53px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 3;
}

.content-types-header {
    text-align: center;
    max-width: 1040px;
    margin: 0 auto 32px;
}

.content-types-title {
    font-family: 'Grandstander', cursive;
    font-style: normal;
    font-weight: 900;
    font-size: 40.9516px;
    line-height: 27px;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.content-types-description {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 17.0632px;
    line-height: 21px;
    color: #FFFFFF;
    max-width: 637.31px;
    margin: 0 auto;
}

.content-types-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    margin-top: 50px;
}

/* Content Card Styles */
.content-card {
    position: relative;
    width: 297.7px;
    height: 266.51px;
    background: #FFFFFF;
    box-shadow: 0px 4.21354px 4.21354px rgba(0, 0, 0, 0.25);
    border-radius: 26.3346px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.card-icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 23.2px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.card-icon {
    width: 115.1px;
    height: 115.1px;
    border-radius: 26.3346px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0.01deg);
}

.web-icon {
    background: linear-gradient(90.96deg, #4CD26F 47.2%, #276C39 99.57%);
}

.docs-icon {
    background: linear-gradient(89.56deg, #4285F4 38.9%, #264D8E 99.9%);
}

.video-icon {
    background: linear-gradient(90.2deg, #D82323 51.97%, #721313 100.15%);
}

.icon-svg {
    width: 85.35px;
    height: 85.35px;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 21.0677px;
    line-height: 26px;
    text-align: center;
    color: #142141;
    margin: 0 0 6px 0;
    padding: 0 26px;
    flex-shrink: 0;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14.7474px;
    line-height: 20px;
    text-align: center;
    color: #142141;
    margin: 0 0 12px 0;
    padding: 0 26px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-fact-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.fact-check-icon {
    width: 20.28px;
    height: 20.28px;
}

.fact-check-text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12.6406px;
    line-height: 26px;
    text-align: center;
    color: #338148;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .content-types-cards {
        gap: 32px;
    }
    
    .content-card {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .content-types-cards {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .content-types-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .content-types-description {
        font-size: 15px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    .content-types {
        padding: 60px 0;
    }
    
    .content-types-cards {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .content-card {
        width: 100%;
        max-width: 320px;
    }
    
    .content-types-title {
        font-size: 28px;
        line-height: 32px;
    }
}

/* Built for Modern Professionals */
/* Built for Modern Professionals Section - Hexagonal Honeycomb Design */
.professionals {
    position: relative;
    padding: 120px 20px;
    background-color: #F6FCFF;
    overflow: visible;
}

.professionals-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.professionals-main-title {
    width: 100%;
    max-width: 906.02px;
    margin: 0 auto 16px auto;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.2em;
    text-align: center;
    color: #142141;
}

.professionals-subtitle {
    width: 100%;
    max-width: 715.14px;
    margin: 16px auto 80px auto;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4em;
    text-align: center;
    color: #142141;
}

.professionals-grid {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Row Layout */
.professionals-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.row-top {
    margin-bottom: -60px;
    z-index: 2;
}

.row-bottom {
    z-index: 1;
}

/* Professional Card Container */
.professional-card {
    position: relative;
    margin: 0 10px;
    width: 338.75px;
    height: 252.72px;
    border: none;
    background: transparent;
    overflow: visible;
}

/* Rounded Rectangle Shape - Exact Figma Design */
.card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 338.75px;
    height: 252.72px;
    background: transparent;
    border-radius: 17.92px;
    border: none;
    box-shadow: none;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card-inner:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Remove old hexagonal border effect - using rounded rectangle now */

/* Individual Card Background Images */
.card-google-factcheck .card-inner {
    background: url('assets/card-bg-google-factcheck.svg') no-repeat center center / cover;
}

.card-ai-summaries .card-inner {
    background: url('assets/card-bg-ai-summaries.svg') no-repeat center center / cover;
}

.card-smart-history .card-inner {
    background: url('assets/card-bg-smart-history.svg') no-repeat center center / cover;
}

.card-universal-content .card-inner {
    background: url('assets/card-bg-universal-content.svg') no-repeat center center / cover;
}

.card-offline-first .card-inner {
    background: url('assets/card-bg-offline-first.svg') no-repeat center center / cover;
}

/* Card Content Layout - Exact Figma Specs */
.card-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 19.5px;
    line-height: 1.4em;
    text-align: center;
    color: #142141;
    margin: 0 0 8px 0;
    padding: 0 8px;
    z-index: 2;
    position: relative;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 13.5px;
    line-height: 1.45em;
    text-align: center;
    color: #000000;
    margin: 0;
    padding: 0 8px;
    z-index: 2;
    position: relative;
    max-width: 100%;
}

/* Card Icons */
.card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    position: relative;
    flex-shrink: 0;
}

.card-icon-top {
    order: -1;
    margin-bottom: 8px;
}

.card-icon-bottom {
    order: 3;
    margin-top: 12px;
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
}

.card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
}

/* Responsive Styles for Professionals Section */
@media (max-width: 1200px) {
    .card-inner {
        width: 320px;
        height: 240px;
        padding: 22px 18px;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .card-description {
        font-size: 12.5px;
    }
    
    .card-icon-wrapper {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 1024px) {
    .card-inner {
        width: 300px;
        height: 220px;
        padding: 20px 16px;
    }
    
    .row-top {
        margin-bottom: -50px;
    }
    
    .professionals-row {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .professionals {
        padding: 80px 20px;
    }
    
    .professionals-main-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .professionals-subtitle {
        font-size: 16px;
        margin-bottom: 60px;
    }
    
    .professionals-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .row-top {
        margin-bottom: 0;
    }
    
    .professional-card {
        margin: 0;
    }
    
    .card-inner {
        width: 100%;
        max-width: 380px;
        height: 270px;
    }
}

@media (max-width: 480px) {
    .professionals-main-title {
        font-size: 28px;
    }
    
    .professionals-subtitle {
        font-size: 14px;
    }
    
    .card-inner {
        width: 100%;
        max-width: 320px;
        height: 240px;
        padding: 20px 16px;
    }
    
    .card-title {
        font-size: 16px;
        margin: 0 0 6px 0;
    }
    
    .card-description {
        font-size: 11.5px;
        line-height: 1.4em;
    }
    
    .card-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .card-icon-top {
        margin-bottom: 8px;
    }
    
    .card-icon-bottom {
        margin-top: 10px;
    }
}

/* Enterprise-Grade Technology Stack */
.enterprise-tech-stack {
    position: relative;
    padding: 140px 0 87px 0;
    min-height: 900px;
    background: transparent;
    overflow: hidden;
    width: 100%;
}

.tech-stack-bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    top: 0;
    background: #142141;
    z-index: 0;
    overflow: hidden;
}

.tech-stack-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('assets/feature_bg.png') no-repeat center;
    background-size: cover;
    z-index: 1;
}

.tech-stack-container {
    position: relative;
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
}

/* Left Side */
.tech-stack-left {
    flex: 0 0 620px;
    display: flex;
    flex-direction: column;
}

.tech-stack-header {
    margin-bottom: 85.84px;
}

.tech-stack-title {
    font-family: 'Grandstander', cursive;
    font-weight: 900;
    font-size: 44.789px;
    line-height: 42px;
    color: #FFFFFF;
    margin: 0 0 8.38px 0;
    width: 620px;
    height: 84px;
}

.tech-stack-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 275;
    font-size: 18.662px;
    line-height: 23.33px;
    color: #FFFFFF;
    margin: 0;
    width: 380.71px;
    margin-left: 1.87px;
}

/* Technology Cards */
.tech-cards {
    display: flex;
    flex-direction: column;
    gap: 25.31px;
    margin-left: 11.2px;
}

.tech-card {
    display: flex;
    align-items: flex-start;
    gap: 52.26px;
    width: 403.1px;
    height: 54.12px;
}

.tech-card-icon-wrapper {
    flex-shrink: 0;
    margin-top: 4.67px;
}

.tech-card-icon {
    width: 49.45px;
    height: 49.45px;
    border-radius: 6.53px;
    box-shadow: inset 0px 3.732px 3.732px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

.tech-card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tech-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18.662px;
    line-height: 23.33px;
    color: #FFFFFF;
    margin: 0 0 6.53px 0;
    width: 259.4px;
    height: 19.6px;
}

.tech-card-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12.13px;
    line-height: 14px;
    color: #FFFFFF;
    margin: 0;
    width: 301.39px;
    height: 24.26px;
}

/* Decorative Icons on Left */
.tech-decorative-icons {
    display: none;
}

.tech-icon-brain {
    display: none;
}

/* Right Side */
.tech-stack-right {
    flex: 0 0 495px;
    width: 495px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Metrics and Platforms Card */
.metrics-platforms-card {
    position: relative;
    width: 495px;
    height: 545.34px;
    border-radius: 16.78px;
    background: linear-gradient(180deg, rgba(117, 155, 175, 1) 4%, rgba(51, 88, 107, 1) 53%, rgba(20, 33, 65, 1) 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16.78px;
    overflow: hidden;
}

/* Performance Metrics Section */
.metrics-section {
    position: absolute;
    left: 36.92px;
    top: 42.79px;
    width: 418.65px;
    height: 258.41px;
    background: rgba(255, 255, 255, 0.5);
    border: 0.839px solid #34467D;
    border-radius: 8.39px;
    box-shadow: inset 0px 3.356px 3.356px 0px rgba(0, 0, 0, 0.25);
    padding: 0;
}

.metrics-header {
    position: absolute;
    left: 31.88px;
    top: 18.46px;
    display: flex;
    align-items: center;
    gap: 41.53px;
    width: 381.74px;
    height: 28.53px;
}

.metrics-icon {
    width: 21.39px;
    height: 24.54px;
    filter: drop-shadow(0px 5.034px 5.034px rgba(0, 0, 0, 0.25));
}

.metrics-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26.847px;
    line-height: 18.87px;
    color: #FFFFFF;
    margin: 0;
    width: 318.81px;
    height: 22.65px;
}

.metrics-list {
    position: absolute;
    left: 28.52px;
    top: 67.96px;
    display: flex;
    flex-direction: column;
    gap: 18.61px;
    width: 355.61px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 18.87px;
}

.metric-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16.36px;
    line-height: 18.87px;
    color: #142141;
}

.metric-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16.36px;
    line-height: 18.87px;
    color: #142141;
    text-shadow: 0px 3.356px 3.356px rgba(0, 0, 0, 0.25);
}

/* Supported Platforms Section */
.platforms-section {
    position: absolute;
    left: 36.92px;
    top: 317.14px;
    width: 418.65px;
    height: 177.86px;
    background: rgba(255, 255, 255, 0.5);
    border: 0.839px solid #34467D;
    border-radius: 8.39px;
    box-shadow: inset 0px 3.356px 3.356px 0px rgba(0, 0, 0, 0.25);
    padding: 0;
}

.platforms-header {
    position: absolute;
    left: 31.88px;
    top: 20.97px;
    display: flex;
    align-items: center;
    gap: 13.07px;
    width: 353.21px;
    height: 28.53px;
}

.platforms-icon {
    width: 21.39px;
    height: 24.54px;
    filter: drop-shadow(0px 5.034px 5.034px rgba(0, 0, 0, 0.25));
}

.platforms-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26.847px;
    line-height: 18.87px;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0px 5.034px 5.034px rgba(0, 0, 0, 0.25);
    width: 318.81px;
    height: 22.65px;
}

.platform-grid {
    position: absolute;
    left: 25.16px;
    top: 62.92px;
    display: grid;
    grid-template-columns: repeat(2, 181.22px);
    gap: 23.33px 23.33px;
    width: 385.77px;
    height: 92.88px;
}

.platform-badge {
    width: 181.22px;
    height: 35.24px;
    background: #FFFFFF;
    border-radius: 7.551px;
    box-shadow: 0px 3.356px 3.356px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16.36px;
    line-height: 18.87px;
    color: #142141;
    text-shadow: inset 0px 3.356px 3.356px 0px rgba(0, 0, 0, 0.25);
}

/* SummiChan Badge */
.summichan-badge {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 87.2px;
    height: 89.84px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.badge-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1300px) {
    .tech-stack-container {
        flex-direction: column;
        gap: 60px;
        padding: 40px 20px;
        align-items: center;
    }
    
    .tech-stack-left {
        flex: 1;
        width: 100%;
        max-width: 800px;
    }
    
    .tech-stack-right {
        flex: 1;
        width: 100%;
        max-width: 550px;
    }
    
    .metrics-platforms-card {
        width: 100%;
        max-width: 495px;
    }
    
    .tech-decorative-icons {
        display: none;
    }
}

@media (max-width: 768px) {
    .enterprise-tech-stack {
        padding: 80px 0 60px 0;
        min-height: auto;
    }
    
    .tech-stack-container {
        padding: 20px;
        gap: 40px;
        flex-direction: column;
    }
    
    .tech-stack-left {
        width: 100%;
        flex: 1;
    }
    
    .tech-stack-header {
        margin-bottom: 40px;
    }
    
    .tech-stack-title {
        font-size: 32px;
        line-height: 36px;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .tech-stack-description {
        font-size: 16px;
        line-height: 20px;
        width: 100%;
    }
    
    .tech-card {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        height: auto;
    }
    
    .tech-cards {
        margin-left: 0;
    }
    
    .tech-stack-right {
        width: 100%;
        max-width: 100%;
        flex: 1;
    }
    
    .metrics-platforms-card {
        width: 100%;
        height: auto;
    }
    
    .metrics-section {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
        left: 0;
        top: 0;
    }
    
    .metrics-header {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    
    .metrics-title {
        width: auto;
        height: auto;
    }
    
    .metrics-list {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
    }
    
    .platforms-section {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
        left: 0;
        top: 0;
    }
    
    .platforms-header {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    
    .platforms-title {
        width: auto;
        height: auto;
    }
    
    .platform-grid {
        position: relative;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }
    
    .platform-badge {
        width: 100%;
        height: 35px;
    }
    
    .summichan-badge {
        width: 70px;
        height: 72px;
        right: -5px;
        top: -5px;
    }
}

/* AI In Action Section - Exact Figma Design */
.ai-in-action {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.ai-in-action-wrapper {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.ai-in-action-header {
    margin-bottom: 66px;
}

.ai-in-action-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 45px;
    line-height: 24px;
    color: #142141;
    margin: 0 0 15px 0;
}

.ai-in-action-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #142141;
    margin: 0;
    margin-left: 207px;
}

/* Content Container */
.ai-in-action-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 12px;
}

/* Before Card */
.before-card {
    width: 465px;
    min-height: 270px;
    background: #FFF5F5;
    border: 1px solid #FF7B7B;
    border-radius: 10px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.before-card-header {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 0 0 41px;
    margin-bottom: 28px;
}

.before-arrow {
    width: 17px;
    height: 10px;
    border-left: 1px solid #D70D0D;
    border-bottom: 1px solid #D70D0D;
    border-right: 1px solid #D70D0D;
    border-top: 3px solid #D70D0D;
    position: relative;
}

.before-arrow::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 1px;
    width: 11px;
    height: 2px;
    background: #D70D0D;
}

.before-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #8C0F0F;
    margin: 0;
}

.before-card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 15px;
    flex: 1;
}

.before-item {
    display: flex;
    position: relative;
    background: #FFFFFF;
    border: 0.5px solid #FFC9C9;
    border-radius: 0px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.before-item:nth-child(1) {
    height: 28px;
}

.before-item:nth-child(2) {
    height: 48px;
}

.before-item:nth-child(3) {
    height: 45px;
}

.before-item-bar {
    width: 8px;
    height: 100%;
    background: #FFC4C4;
    border-radius: 0px;
    flex-shrink: 0;
}

.before-item-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #000000;
    margin: 0;
    padding: 5px 8px 5px 13px;
    flex: 1;
    display: flex;
    align-items: center;
}

.before-card-footer {
    position: relative;
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    border-top: 1px solid rgba(255, 123, 123, 0.2);
}

.before-time-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 8px;
    line-height: 14px;
    letter-spacing: 0.02em;
    color: #505050;
    margin: 0;
}

/* After Card */
.after-card {
    width: 531px;
    min-height: 397px;
    background: #F5FFF8;
    border: 1px solid #34A853;
    border-radius: 10px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.after-card-header {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 0 0 34px;
    margin-bottom: 28px;
}

.after-arrow {
    width: 10px;
    height: 17px;
    border: 1px solid #39B95B;
    border-radius: 0;
    position: relative;
}

.after-arrow::before {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: #39B95B;
    font-weight: bold;
}

.after-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #338148;
    margin: 0;
}

.after-card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 29px;
    flex: 1;
}

.after-section {
    display: flex;
    position: relative;
    background: #FFFFFF;
    border: 0.5px solid #39B95B;
    border-radius: 0px;
}

.after-section:nth-child(1) {
    min-height: 101px;
}

.after-section:nth-child(2) {
    min-height: 100px;
}

.after-section:nth-child(3) {
    min-height: 50px;
}

.after-section-bar {
    width: 8.85px;
    background: #34A853;
    border-radius: 0px;
    flex-shrink: 0;
}

.after-section-content {
    flex: 1;
    padding-left: 17px;
    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 8px;
}

.after-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: #000000;
    margin: 0 0 6px 0;
}

.after-section-bar {
    position: relative;
}

.after-section-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: #39B95B;
    border-radius: 50%;
    border: 0.75px solid #D9D9D9;
}

.after-section:nth-child(2) .after-section-bar::before {
    top: 22px;
}

.after-section:nth-child(3) .after-section-bar::before {
    top: 4px;
}

.after-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.after-list-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #787878;
    margin-bottom: 4px;
    padding-left: 13px;
}

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

.fact-check-section .after-section-title {
    margin-bottom: 0;
}

.fact-check-summary-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 8px;
    line-height: 14px;
    letter-spacing: 0.02em;
    color: #000000;
    margin: 6px 0 0 0;
}

.after-card-footer {
    position: relative;
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    border-top: 1px solid rgba(52, 168, 83, 0.1);
}

.after-time-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 9px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #000000;
    margin: 0;
}

/* Responsive Design for AI In Action */
@media (max-width: 1100px) {
    .ai-in-action-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .before-card,
    .after-card {
        width: 100%;
        max-width: 531px;
    }
    
    .before-card {
        height: auto;
        min-height: 270px;
    }
    
    .after-card {
        height: auto;
        min-height: 397px;
    }
}

@media (max-width: 768px) {
    .ai-in-action {
        padding: 60px 0;
    }
    
    .ai-in-action-title {
        font-size: 32px;
        line-height: 36px;
        text-align: center;
    }
    
    .ai-in-action-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-left: 0;
        text-align: center;
    }
    
    .before-card,
    .after-card {
        width: 100%;
    }
    
    .before-card-footer {
        position: relative;
        margin-top: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .after-card-footer {
        position: relative;
        margin-top: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* Testimonials */
.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.stars {
    font-size: var(--font-size-2xl);
    color: #FFD700;
}

.rating-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.testimonials-grid {
    display: grid;
    gap: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--secondary-bg);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.testimonial-content {
    margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
    font-style: italic;
    font-size: var(--font-size-lg);
    margin: 0;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--accent-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.author-title {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Updated Testimonials Section - Figma Design */
.testimonials {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('assets/feature_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.testimonials-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1450.53px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-main-title {
    font-family: 'Grandstander', cursive;
    font-weight: 900;
    font-size: 40.43px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 34.53px 0;
}

.testimonials-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.68px;
    margin-bottom: 25.27px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0;
    height: 25.27px;
}

.star-icon {
    width: 24.42px;
    height: 25.27px;
    filter: drop-shadow(0px 3.37px 3.37px rgba(0, 0, 0, 0.25));
}

.star-icon:not(:last-child) {
    margin-right: -1.89px;
}

.star-half {
    width: 24.42px;
}

.rating-text {
    font-family: 'Grandstander', cursive;
    font-weight: 900;
    font-size: 20.21px;
    line-height: 1.33;
    color: #FFFFFF;
    margin: 0;
}

.testimonials-reviews-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 27.05px;
    width: 100%;
    max-width: 982px;
    margin: 0 auto;
}

.review-card {
    background: #FFFFFF;
    border-radius: 16.84px;
    padding: 21.06px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 3.37px 3.37px rgba(0, 0, 0, 0.25);
}

.review-card-1,
.review-card-2,
.review-card-3 {
    width: 291.4px;
    min-height: 202.97px;
    margin-top: 0;
}

.review-stars {
    display: flex;
    gap: 0;
    margin-bottom: 28.99px;
}

.review-star {
    width: 23.58px;
    height: 24.73px;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
}

.review-star path {
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 0.5px;
}

.review-star:not(:last-child) {
    margin-right: -1px;
}

.review-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 275;
    font-size: 12.63px;
    line-height: 2.13;
    color: #000000;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.review-card-2 .review-text {
    font-size: 12.63px;
    line-height: 2.13;
    text-align: left;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 7.58px;
    margin-top: 25px;
}

.review-card-1 .review-author {
    margin-top: 25px;
}

.review-card-2 .review-author {
    margin-top: 25px;
    gap: 7.58px;
}

.review-card-3 .review-author {
    margin-top: 25px;
}

.author-avatar {
    width: 37.06px;
    height: 37.06px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFFFFF 0%, #6D8DBA 52%, #44547C 100%);
    box-shadow: 0px 3.37px 3.37px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-initials {
    font-family: 'Grandstander', cursive;
    font-weight: 900;
    font-size: 20.21px;
    line-height: 1.33;
    color: #FFFFFF;
    text-shadow: 0px 3.37px 3.37px rgba(0, 0, 0, 0.25);
}

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

.author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13.48px;
    line-height: 2;
    color: #142141;
    margin: 0;
}

.author-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 11.79px;
    line-height: 2.29;
    color: #142141;
    margin: 0;
}

/* ===========================
   PRICING SECTION - Figma Design
   =========================== */

.pricing {
    position: relative;
    padding: 100px 0 120px;
    background-color: #F5F7FA;
    overflow: hidden;
}

/* Background Image */
.pricing-background {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('assets/Border-Design-Pricing-FAQs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

/* Main Wrapper */
.pricing-wrapper {
    position: relative;
    max-width: 918px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 1;
}

/* Header Section */
.pricing-header {
    text-align: center;
    margin-bottom: 62px;
}

.pricing-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
    color: #142141;
    margin: 0 0 11px 0;
    text-align: center;
}

.pricing-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #142141;
    margin: 0;
    text-align: center;
}

/* Toggle Section */
.pricing-toggle-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    margin-bottom: 30px;
}

.toggle-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-monthly {
    position: relative;
}

.toggle-annually {
    position: relative;
}

.pricing-toggle-switcher {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.toggle-switch-bg {
    position: relative;
    width: 49px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #838EA9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch-circle {
    position: absolute;
    left: 5px;
    top: 3px;
    width: 14px;
    height: 14px;
    background-color: transparent;
    border: 1px solid #586179;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch-bg:hover {
    border-color: #4D6DA6;
}

.toggle-switch-bg.active .toggle-switch-circle {
    transform: translateX(24px);
    background-color: #4D6DA6;
    border-color: #4D6DA6;
}

/* Pricing Cards Wrapper */
.pricing-cards-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 75px;
    margin: 0 auto;
    max-width: 635px;
}

/* Individual Pricing Card */
.pricing-plan-card {
    position: relative;
    width: 280px;
    background: transparent;
    overflow: visible;
}

.pricing-plan-card.free-plan {
    height: 434px;
}

.pricing-plan-card.pro-plan {
    height: 435px;
}

/* Card Background */
.plan-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border: 1px solid #142141;
    border-radius: 9px;
    z-index: 0;
    overflow: hidden;
}

/* Plan Content */
.plan-content {
    position: relative;
    height: calc(100% - 80px);
    padding: 30px 25px;
    z-index: 1;
    box-sizing: border-box;
}

/* Plan Title Section */
.plan-title-section {
    margin-bottom: 25px;
}

.plan-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 25.38px;
    line-height: 38.07px;
    letter-spacing: -0.02em;
    color: #142141;
    margin: 0 0 17px 0;
}

.plan-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 25.38px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #1A2747;
    margin: 0;
}

/* Plan Features List */
.plan-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0;
}

.free-plan .plan-features-list {
    max-height: 125px;
    overflow: hidden;
}

.pro-plan .plan-features-list {
    gap: 25.12px;
    max-height: 200px;
    overflow: hidden;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.feature-check-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px;
}

.pro-plan .feature-check-icon {
    width: 16px;
    height: 16.07px;
}

.feature-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
}

/* CTA Button */
.plan-cta-button {
    position: absolute;
    left: 25px;
    right: 25px;
    width: 230px;
    height: 31px;
    background-color: #4D6DA6;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    z-index: 2;
}

.free-plan .plan-cta-button {
    bottom: 30px;
}

.pro-plan .plan-cta-button {
    bottom: 30px;
    height: 31.14px;
}

/* Savings Text for Annual Plan */
.plan-savings-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 7px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    color: #39B95B;
    margin: 11px 0 0 0;
    display: none;
}

.pro-plan .plan-savings-text {
    position: absolute;
    top: 64px;
    left: 25px;
    width: 126px;
    height: 11px;
}

.plan-cta-button:hover {
    background-color: #3D5D96;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 109, 166, 0.3);
}

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

/* Pricing Email CTA Component - Exact Figma Design */
.pricing-email-cta {
    position: relative;
    width: 503.96px;
    height: 86.56px;
    margin: 60px auto 0;
}

.pricing-email-cta-bg {
    position: absolute;
    left: 0;
    top: 21.16px;
    width: 464.43px;
    height: 60.01px;
    background: #4D6DA6;
    border-radius: 11.741151809692383px;
    box-shadow: inset 0px 3.191040515899658px 3.191040515899658px 0px rgba(0, 0, 0, 0.25);
}

.pricing-email-cta-top-text {
    position: absolute;
    left: 4.79px;
    top: 0;
    width: 453.99px;
    height: 19.57px;
    font-family: 'Grandstander', cursive;
    font-weight: 900;
    font-size: 20.873159408569336px;
    line-height: 0.9375em;
    color: #25395C;
    text-align: left;
    margin: 0;
    display: flex;
    align-items: center;
}

.pricing-email-cta-input-wrapper {
    position: absolute;
    left: 11.94px;
    top: 33.17px;
    width: 220.27px;
    height: 38.05px;
    border: 0.8712937235832214px solid rgba(255, 255, 255, 0.7);
    border-radius: 6.9703497886657715px;
    padding: 10.455524444580078px;
    background: transparent;
    display: flex;
    align-items: center;
}

.pricing-email-cta-input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25em;
    color: #FFFFFF;
    padding: 0;
}

.pricing-email-cta-input::placeholder {
    color: #FFFFFF;
    opacity: 1;
}

.pricing-email-cta-button {
    position: absolute;
    left: 255.28px;
    top: 44.67px;
    width: 182.64px;
    height: 19.57px;
    background: transparent;
    border: none;
    font-family: 'Grandstander', cursive;
    font-weight: 900;
    font-size: 20.873159408569336px;
    line-height: 0.9375em;
    color: #FFFFFF;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
}

.pricing-email-cta-button:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

.pricing-email-cta-logo {
    position: absolute;
    left: 433.04px;
    top: 14.44px;
    width: 70.91px;
    height: 72.13px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.pricing-email-cta-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments for Email CTA */
@media (max-width: 768px) {
    .pricing-email-cta {
        width: 90%;
        max-width: 503.96px;
        height: auto;
        min-height: 86.56px;
    }
    
    .pricing-email-cta-bg {
        width: 92%;
    }
    
    .pricing-email-cta-top-text {
        font-size: 16px;
        width: 85%;
    }
    
    .pricing-email-cta-input-wrapper {
        width: 50%;
        max-width: 220.27px;
    }
    
    .pricing-email-cta-button {
        font-size: 16px;
        width: auto;
        left: 48%;
    }
    
    .pricing-email-cta-logo {
        width: 60px;
        height: 60px;
        right: 10px;
        left: auto;
        top: 10px;
    }
}

/* FAQ Section */
/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('assets/Border-Design-Pricing-FAQs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-bg);
}

.about-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
    color: #142141;
    margin: 0 0 20px 0;
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: #142141;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-section-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    color: #4a6da7;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 109, 167, 0.1);
    border-radius: 12px;
    padding: 12px;
}

.about-section-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.5;
}

.about-section-content {
    flex: 1;
}

.about-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    color: #142141;
    margin: 0 0 16px 0;
}

.about-section-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #33586B;
    margin: 0 0 16px 0;
}

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

.about-values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
}

.about-value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #34A853;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.about-value-content {
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #33586B;
}

.about-value-content strong {
    color: #142141;
    font-weight: 600;
}

.about-tech-badge {
    margin-top: 80px;
    padding: 30px;
    background: rgba(74, 109, 167, 0.05);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(74, 109, 167, 0.1);
}

.about-tech-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #33586B;
    margin: 0;
}

.faq-wrapper {
    position: relative;
    z-index: 2;
    max-width: 934px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 65px;
}

.faq-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
    color: #142141;
    margin: 0 0 39px 0;
}

.faq-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.333;
    color: #142141;
    margin: 0;
    max-width: 865px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: transparent;
    border-top: 0.846px solid #CDCDCD;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: 0.846px solid #CDCDCD;
}

.faq-question {
    width: 100%;
    padding: 19.458px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 51.607px;
}

.faq-question:hover {
    opacity: 0.8;
}

.question-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 25.38px;
    line-height: 1.302;
    letter-spacing: -0.02em;
    color: #33586B;
    flex: 1;
    max-width: 839.25px;
    text-align: left;
    vertical-align: center;
}

.faq-item:first-child .question-text {
    font-size: 30px;
}

.question-icon {
    flex-shrink: 0;
    width: 22.37px;
    height: 20.77px;
    color: #33586B;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 19.458px 0;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #33586B;
    margin: 0;
    padding-right: 80px;
}

/* Subscription Management Section */
.subscription-management {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-bg);
}

.subscription-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.subscription-header {
    text-align: center;
    margin-bottom: 65px;
}

.subscription-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
    color: #142141;
    margin: 0 0 20px 0;
}

.subscription-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.333;
    color: #142141;
    margin: 0;
    max-width: 865px;
    margin-left: auto;
    margin-right: auto;
}

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

.subscription-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 25px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.subscription-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.subscription-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #33586B 0%, #4D6DA6 100%);
    color: white;
}

.subscription-card-icon svg {
    width: 28px;
    height: 28px;
}

.subscription-card-content {
    flex: 1;
}

.subscription-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #142141;
    margin: 0 0 12px 0;
}

.subscription-card-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #33586B;
    margin: 0 0 20px 0;
}

.subscription-card-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscription-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #33586B 0%, #4D6DA6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.step-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #25395C;
}

.subscription-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.subscription-platform {
    background: #F6FCFF;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #D9EEF9;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.platform-icon {
    width: 24px;
    height: 24px;
}

.platform-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #142141;
    margin: 0;
}

.platform-steps {
    margin: 0;
    padding-left: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #33586B;
    line-height: 1.8;
}

.platform-steps li {
    margin-bottom: 8px;
}

.subscription-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.info-item span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #33586B;
    line-height: 1.6;
}

.subscription-note {
    margin-top: 20px;
    padding: 15px;
    background: #FFF9E6;
    border-left: 4px solid #FF9800;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #25395C;
    line-height: 1.6;
}

.refund-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.refund-item {
    padding: 15px;
    background: #F6FCFF;
    border-radius: 8px;
    border-left: 3px solid #33586B;
}

.refund-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #142141;
    margin: 0 0 8px 0;
}

.refund-item-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #33586B;
    line-height: 1.6;
    margin: 0;
}

.subscription-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #CDCDCD;
}

.subscription-footer-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #33586B;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.subscription-footer-legal {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #25395C;
    margin: 0;
    line-height: 1.6;
}

.subscription-footer-link {
    color: #33586B;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.subscription-footer-link:hover {
    color: #4D6DA6;
}

/* Responsive Styles for Subscription Management */
@media (max-width: 768px) {
    .subscription-title {
        font-size: 32px;
    }
    
    .subscription-subtitle {
        font-size: 16px;
    }
    
    .subscription-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .subscription-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .subscription-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .subscription-card-title {
        font-size: 20px;
    }
    
    .subscription-platforms {
        grid-template-columns: 1fr;
    }
    
    .subscription-footer-text,
    .subscription-footer-legal {
        font-size: 14px;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('assets/feature_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.final-cta-wrapper {
    max-width: 985px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 460px;
    z-index: 1;
}

/* Title */
.final-cta-title {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Subtitle */
.final-cta-subtitle {
    width: 725px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    margin-left: 131px;
    margin-top: 0px;
}

/* Email Section */
.final-cta-email-section {
    position: relative;
    width: 450px;
    height: 66px;
    margin-top: 38px;
    margin-left: -22px;
}

.final-cta-email-bg {
    position: absolute;
    width: 450px;
    height: 66px;
    background: #4D6DA6;
    border-radius: 9px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    top: 0;
    left: 0;
}

.final-cta-email-input-wrapper {
    position: absolute;
    width: 260px;
    top: 10px;
    left: 22px;
    z-index: 2;
}

.final-cta-email-input {
    width: 100%;
    height: 44.91px;
    background: transparent;
    border: 1.03px solid rgba(255, 255, 255, 0.7);
    border-radius: 8.23px;
    padding: 12.34px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25em;
    color: #FFFFFF;
    outline: none;
}

.final-cta-email-input::placeholder {
    color: #FFFFFF;
    opacity: 0.7;
}

.final-cta-email-submit {
    position: absolute;
    top: 10px;
    right: 22px;
    width: 120px;
    height: 45px;
    background: linear-gradient(135deg, #5B7BC7 0%, #4D6DA6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25em;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.final-cta-email-submit:hover {
    background: linear-gradient(135deg, #6A8AD6 0%, #5B7BC7 100%);
    transform: translateY(-1px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.final-cta-email-submit:active {
    transform: translateY(0);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.final-cta-email-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Buttons Container */
.final-cta-buttons {
    position: relative;
    width: 446px;
    height: 58px;
    margin-top: 76px;
    margin-left: -1px;
    display: flex;
    gap: 27px;
}

/* Shadow Layer */
.final-cta-buttons-shadow {
    position: absolute;
    width: 446px;
    height: 57.98px;
    top: 58px;
    left: -1px;
    display: flex;
    gap: 27px;
    opacity: 0.1;
    pointer-events: none;
}

/* App Store & Google Play Buttons */
.final-cta-app-btn {
    position: relative;
    border: none;
    cursor: pointer;
    padding: 0;
    background: transparent;
}

.final-cta-app-store,
.final-cta-app-store-shadow {
    width: 209px;
    height: 57px;
}

.final-cta-google-play,
.final-cta-google-play-shadow {
    width: 210px;
    height: 57px;
}

/* App Store Background */
.final-cta-btn-bg {
    position: absolute;
    width: 209px;
    height: 57px;
    background: #141414;
    border-radius: 7px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    top: 0;
    left: 0;
}

/* Google Play Border */
.final-cta-btn-border {
    position: absolute;
    width: 210px;
    height: 57px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 7px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    top: 0;
    left: 0;
}

/* App Store Icon */
.final-cta-app-store .final-cta-store-icon {
    position: absolute;
    width: 31.52px;
    height: 34.75px;
    left: 12px;
    top: 8px;
    z-index: 2;
}

/* Google Play Icon - Will be handled by SVG in HTML */
.final-cta-google-play .final-cta-play-icon {
    position: absolute;
    width: 31.52px;
    height: 34.75px;
    left: 15.29px;
    top: 12px;
    z-index: 2;
}

/* Store Text Container */
.final-cta-store-text {
    position: relative;
    z-index: 2;
}

/* App Store Text */
.final-cta-app-store .final-cta-store-subtitle {
    position: absolute;
    left: 40px;
    top: 14.25px;
    width: 143.54px;
    height: 12.21px;
    font-family: 'SF Compact', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 457;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #D9EEF9;
}

.final-cta-app-store .final-cta-store-title {
    position: absolute;
    left: 26px;
    top: 28.5px;
    width: 127px;
    height: 12.21px;
    font-family: 'SF Compact', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 943;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #D9EEF9;
}

/* Google Play Text */
.final-cta-google-play .final-cta-store-subtitle {
    position: absolute;
    left: 55.23px;
    top: 16.29px;
    width: 144.23px;
    height: 12.21px;
    font-family: 'SF Compact', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 457;
    font-size: 16px;
    line-height: 1.5em;
    text-align: left;
    color: #D9EEF9;
}

.final-cta-google-play .final-cta-store-title {
    position: absolute;
    left: 29.77px;
    top: 29.52px;
    width: 143.08px;
    height: 12.21px;
    font-family: 'SF Compact', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 943;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #D9EEF9;
}

/* Vector Lines */
.final-cta-app-store .final-cta-vector-line {
    position: absolute;
    width: 8.5px;
    height: 17.81px;
    left: 192px;
    top: 19.34px;
    border-left: 3px solid #D9EEF9;
    z-index: 2;
}

.final-cta-google-play .final-cta-vector-line {
    position: absolute;
    width: 8.5px;
    height: 17.81px;
    left: 192px;
    top: 19.34px;
    border-left: 3px solid #D9EEF9;
    z-index: 2;
}

/* Features Text */
.final-cta-features-text {
    width: 661px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    margin-top: 80px;
    margin-left: -1px;
}

/* Shadow Button Adjustments - Already handled by container positioning */

/* Footer Section */
/* ===========================
   FOOTER SECTION
   =========================== */

.footer {
    background-color: #000000;
    padding: 60px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-wrapper {
    position: relative;
    width: 933.69px;
    height: 210px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 0;
}

/* Logo Section */
.footer-logo-section {
    position: absolute;
    left: 128.15px;
    top: 0;
    width: 297.79px;
    height: 35.78px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-logo-image {
    width: 28.72px;
    height: 28.35px;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1.077px solid #33586B;
    border-radius: 177.167px;
}

.footer-brand-text {
    font-family: 'Grandstander', cursive;
    font-weight: 900;
    font-size: 17.23px;
    line-height: 2em;
    background: linear-gradient(180deg, #1E5672 22%, #B6E4FB 68%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: inset 0px 4.308px 4.308px 0px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
}

/* Description Text */
.footer-description-text {
    position: absolute;
    left: 130.31px;
    top: 32.31px;
    width: 184.15px;
    height: 51.69px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 10.769px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

/* Features Column */
.footer-features-column {
    position: absolute;
    left: 393.08px;
    top: 7.54px;
}

.footer-features-column .footer-column-title {
    margin-bottom: 8.77px;
}

/* Support Column */
.footer-support-column {
    position: absolute;
    left: 574px;
    top: 4.31px;
}

.footer-support-column .footer-column-title {
    margin-bottom: 12px;
}

/* Company Column */
.footer-company-column {
    position: absolute;
    left: 735.54px;
    top: 3.23px;
}

.footer-company-column .footer-column-title {
    margin-bottom: 12.08px;
}

/* Column Titles */
.footer-column-title {
    font-family: 'Grandstander', cursive;
    font-weight: 700;
    font-size: 16.154px;
    line-height: 0.9975em;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

/* Column Lists */
.footer-column-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2.31px;
}

.footer-column-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 10.769px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: block;
}

.footer-column-link:hover {
    opacity: 0.8;
    transform: translateX(2px);
}

/* Horizontal Line */
.footer-line {
    position: absolute;
    left: 0;
    top: 160.46px;
    width: 933.69px;
    height: 0;
    border-top: 1.077px solid #1C1C1C;
}

/* Copyright Text */
.footer-copyright-text {
    position: absolute;
    left: 222.92px;
    top: 192.77px;
    width: 538.46px;
    height: 17.23px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 10.769px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    color: #B8B8B8;
    text-align: center;
    margin: 0;
}

/* Footer Legal Links */
.footer-legal-links {
    position: absolute;
    left: 222.92px;
    top: 215px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: rgba(184, 184, 184, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-legal-separator {
    color: rgba(184, 184, 184, 0.5);
    font-size: 10px;
}

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

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

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

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
    90% {
        transform: translateY(-2px);
    }
}

/* Enhanced Focus States */
*:focus {
    outline: 2px solid var(--cta-primary);
    outline-offset: 2px;
}

/* Improved Button Hover Effects */
.cta-button:hover, .primary-cta:hover {
    background-color: var(--cta-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.app-store-btn:hover {
    background-color: var(--accent-bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Card Hover Effects */
.feature-card:hover, .content-type-card:hover, .professional-card:hover, .testimonial-card:hover, .pricing-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 1.5s infinite;
}

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

/* Enhanced Mobile Menu Animation */
.nav-menu {
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.active {
    transform: translateY(0);
}

/* Enhanced Pricing Toggle */
.pricing-toggle {
    position: relative;
    overflow: hidden;
}

.toggle-btn {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.toggle-btn.active {
    color: var(--text-primary);
}

/* Responsive Design */
@media (min-width: 640px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .app-store-buttons {
        order: 2;
    }
    
    .primary-cta {
        order: 1;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-row-2 {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 40px;
    }
    
    .feature-row-2 .feature-image-col {
        flex: 0 0 auto;
        max-width: 280px;
    }
    
    .feature-row-2 .feature-text-col {
        flex: 1;
        padding: 0;
    }
    
    .feature-row-3 {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 40px;
    }
    
    .feature-row-3 .feature-text-col {
        flex: 1;
        padding: 0;
    }
    
    .feature-row-3 .feature-image-col {
        flex: 0 0 auto;
        max-width: 350px;
    }
    
    .features-card-container {
        position: relative;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 40px 35px;
    }
    
    .content-types-cards {
        gap: 32px;
    }
    
    .tech-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .performance-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .how-it-works-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-list {
        order: 1;
    }
    
    .steps-visual {
        order: 2;
    }
    
    .before-after {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-form {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-actions {
        align-items: flex-start;
    }
    
    .phone-mockup {
        width: 360px;
        height: 720px;
    }
    
    .logo-character {
        width: 200px;
        height: 200px;
    }
    
    .character-head {
        width: 160px;
        height: 160px;
    }
    
    .logo-text {
        font-size: 3.5rem;
    }
    
    /* Enhanced hover effects for desktop */
    .feature-card:hover, .content-type-card:hover, .professional-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }
    
    /* Improved spacing for large screens */
    section {
        padding: 5rem var(--spacing-md);
    }
    
    .hero {
        padding: 140px var(--spacing-md) 5rem;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon, .feature-icon, .professional-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced Motion Support */
@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;
    }
    
    .feature-card:hover, .content-type-card:hover, .professional-card:hover, .testimonial-card:hover, .pricing-plan-card:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .header, .mobile-menu-toggle, .cta-button, .primary-cta, .app-store-btn, .plan-cta, .cta-submit {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-title {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
    
    section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* Comprehensive Responsive Design */

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header */
    .header-content {
        padding: 12px 16px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* Hero */
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 40px 16px;
        max-width: 100%;
    }
    
    .hero-logo {
        position: relative;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .app-store-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .app-store-btn {
        width: 100%;
        justify-content: center;
    }
    
    .email-signup {
        width: 100%;
    }
    
    /* How It Works */
    .how-it-works-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .phone-mockup-container {
        order: 2;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .steps-container {
        order: 1;
    }
    
    /* Features */
    .features {
        max-width: 100%;
        padding: 60px 0 80px 0;
    }
    
    .features-wrapper {
        padding: 0 20px;
    }
    
    .features-main-title {
        font-size: 36px;
        line-height: 54px;
        margin-bottom: 30px;
    }
    
    .features-card-container {
        position: relative;
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
        padding: 30px 20px;
        gap: 30px;
        border-radius: 30px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 20px;
    }
    
    .feature-row-2 {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 40px;
    }
    
    .feature-row-2 .feature-image-col {
        flex: 0 0 auto;
        max-width: 250px;
    }
    
    .feature-row-2 .feature-character-img {
        width: 100%;
        max-width: 250px;
    }
    
    .feature-row-2 .feature-text-col {
        flex: 1;
        padding-left: 0;
    }
    
    .feature-row-2 .feature-heading {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .feature-row-2 .feature-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .feature-row-3 {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 30px;
    }
    
    .feature-row-3 .feature-text-col {
        flex: 1;
        padding-right: 0;
    }
    
    .feature-row-3 .feature-image-col {
        flex: 0 0 auto;
        max-width: 240px;
    }
    
    .feature-3rd-img {
        width: 100%;
        max-width: 240px;
    }
    
    .feature-row-3 .feature-heading {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .feature-row-3 .feature-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .feature-row-1 {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-row-1 .feature-text-col {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .feature-row-1 .feature-image-col {
        max-width: 100%;
    }
    
    .feature-row-1 .feature-heading {
        font-size: 26px;
        text-align: center;
    }
    
    .feature-row-1 .feature-text {
        font-size: 15px;
        text-align: center;
    }
    
    .feature-heading {
        font-size: 22px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .feature-character-img {
        width: 200px;
        height: auto;
    }
    
    .feature-tabs-image {
        max-width: 100%;
    }
    
    .mockup-tabs {
        flex-direction: row;
        gap: 0;
        padding: 12px 16px;
        border: 6px solid #2C4A5E;
        border-radius: 20px;
    }
    
    .mockup-tab {
        padding: 12px 16px;
        font-size: 14px;
        gap: 6px;
    }
    
    .tab-icon {
        font-size: 18px;
    }
    
    .tab-label {
        font-size: 14px;
    }
    
    .mockup-tab.active::after {
        font-size: 18px;
        right: 8px;
        bottom: 6px;
    }
    
    .mockup-buttons {
        flex-direction: row;
        gap: 8px;
        padding: 10px;
    }
    
    .mockup-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Google Fact Check Integration */
    .gfci-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .gfci-left {
        max-width: 100%;
    }
    
    .gfci-main-heading {
        font-size: 28px;
        line-height: 32px;
        margin-left: 0;
    }
    
    .gfci-subheading {
        font-size: 14px;
        line-height: 18px;
    }
    
    .gfci-feature-card {
        width: 100%;
        height: auto;
        min-height: 78px;
        padding: 12px;
    }
    
    .gfci-feature-title {
        font-size: 15px;
        line-height: 20px;
    }
    
    .gfci-feature-desc {
        font-size: 12px;
        line-height: 16px;
    }
    
    .gfci-right {
        max-width: 100%;
    }
    
    .gfci-number-badge {
        right: 10px;
        top: -20px;
        width: 60px;
        height: 62px;
        font-size: 32px;
    }
    
    /* Content Types */
    .content-types-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    /* Tech Stack */
    .tech-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* AI Demo */
    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Pricing - Responsive */
    .pricing {
        padding: 60px 0 80px;
    }
    
    .pricing-wrapper {
        padding: 40px 16px;
    }
    
    .pricing-main-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .pricing-header {
        margin-bottom: 40px;
    }
    
    .pricing-toggle-section {
        gap: 60px;
        margin-bottom: 40px;
    }
    
    .pricing-cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pricing-plan-card {
        width: 100%;
        max-width: 320px;
    }
    
    /* FAQ */
    .faq {
        padding: 60px 0 80px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-wrapper {
        padding: 40px 16px;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .about-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .about-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-section-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    
    .about-section-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .about-section-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .about-values-list {
        gap: 16px;
    }
    
    .about-value-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .about-value-content {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .about-tech-badge {
        margin-top: 50px;
        padding: 24px 20px;
    }
    
    .about-tech-text {
        font-size: 14px;
    }
    
    .faq-wrapper {
        padding: 40px 16px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 16px 0;
        gap: 20px;
    }
    
    .question-text {
        font-size: 18px;
    }
    
    .faq-item:first-child .question-text {
        font-size: 20px;
    }
    
    .question-icon {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer p {
        font-size: 15px;
        padding-right: 20px;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 60px 20px;
    }
    
    .final-cta-wrapper {
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .final-cta-title {
        font-size: 32px;
        text-align: center;
    }
    
    .final-cta-subtitle {
        width: 100%;
        margin-left: 0;
        font-size: 14px;
    }
    
    .final-cta-email-section {
        width: 100%;
        max-width: 308px;
        margin-left: 0;
    }
    
    .final-cta-email-bg {
        width: 100%;
    }
    
    .final-cta-email-input-wrapper {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .final-cta-buttons {
        width: 100%;
        max-width: 446px;
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 20px;
    }
    
    .final-cta-buttons-shadow {
        display: none;
    }
    
    .final-cta-app-store,
    .final-cta-google-play {
        width: 100%;
        max-width: 209px;
    }
    
    .final-cta-features-text {
        width: 100%;
        margin-left: 0;
        font-size: 13px;
        padding: 0 20px;
    }
    
    .cta-actions {
        gap: 30px;
    }
    
    .app-store-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-wrapper {
        padding: 0 20px;
    }
    
    .testimonials-main-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .rating-stars {
        height: 20px;
    }
    
    .star-icon {
        width: 18px;
        height: 20px;
    }
    
    .rating-text {
        font-size: 16px;
    }
    
    .testimonials-reviews-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .review-card-1,
    .review-card-2,
    .review-card-3 {
        width: 100%;
        max-width: 340px;
        min-height: auto;
        margin-top: 0;
    }
    
    .review-card-2 .review-text {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-stars {
        margin-bottom: 15px;
    }
    
    .review-star {
        width: 18px;
        height: 19px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .review-card-2 .review-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .review-author {
        margin-top: 20px;
    }
    
    .review-card-1 .review-author,
    .review-card-2 .review-author,
    .review-card-3 .review-author {
        margin-top: 20px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .review-card-2 .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .avatar-initials {
        font-size: 16px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-title {
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-logo-section {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
    }
    
    .footer-description-text {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
    }
    
    .footer-features-column,
    .footer-support-column,
    .footer-company-column {
        position: relative;
        left: 0;
        top: 0;
    }
    
    .footer-line {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        margin: 20px 0;
    }
    
    .footer-copyright-text {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .footer-legal-links {
        position: relative;
        left: 0;
        top: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .app-store-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Features */
    .features {
        max-width: 100%;
        padding: 70px 0 90px 0;
    }
    
    .features-wrapper {
        padding: 0 30px;
    }
    
    .features-main-title {
        font-size: 52px;
        line-height: 78px;
    }
    
    .features-card-container {
        position: relative;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 40px 45px 50px 45px;
        gap: 40px;
    }
    
    .feature-row {
        flex-direction: row;
        gap: 50px;
    }
    
    /* Google Fact Check Integration */
    .gfci-container {
        gap: 50px;
    }
    
    .gfci-main-heading {
        font-size: 36px;
        line-height: 40px;
    }
    
    .gfci-subheading {
        font-size: 16px;
        line-height: 20px;
    }
    
    .gfci-feature-card {
        width: 100%;
        max-width: 450px;
    }
    
    /* Content Types */
    .content-types-cards {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    /* Tech Stack */
    .tech-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* AI Demo */
    .demo-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 70px 0;
    }
    
    .testimonials-wrapper {
        padding: 0 30px;
    }
    
    .testimonials-main-title {
        font-size: 34px;
        margin-bottom: 28px;
    }
    
    .rating-stars {
        height: 22px;
    }
    
    .star-icon {
        width: 20px;
        height: 22px;
    }
    
    .rating-text {
        font-size: 18px;
    }
    
    .testimonials-reviews-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        max-width: 500px;
    }
    
    .review-card-1,
    .review-card-2,
    .review-card-3 {
        width: 100%;
        margin-top: 0;
    }
    
    /* Pricing - Tablet */
    .pricing-main-title {
        font-size: 36px;
    }
    
    .pricing-cards-wrapper {
        flex-direction: row;
        gap: 40px;
    }
    
    .pricing-plan-card {
        max-width: 280px;
    }
    
    /* Footer */
    .footer-wrapper {
        width: 100%;
        padding: 0 20px;
    }
    
    .footer-features-column {
        left: 300px;
    }
    
    .footer-support-column {
        left: 450px;
    }
    
    .footer-company-column {
        left: 600px;
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 64px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    /* Features */
    .features {
        max-width: 1280px;
    }
    
    .features-wrapper {
        padding: 0 40px;
    }
    
    .features-main-title {
        font-size: 64px;
        line-height: 96px;
    }
    
    .features-card-container {
        position: relative;
        width: 100%;
        max-width: 1182px;
        margin: 0 auto;
        padding: 48px 58px 60px 58px;
        gap: 48px;
    }
    
    .feature-row {
        flex-direction: row;
        gap: 60px;
    }
    
    .feature-row-1 {
        flex-direction: row !important;
        gap: 60px;
    }
    
    .feature-row-1 .feature-text-col {
        flex: 1;
        max-width: 480px;
    }
    
    .feature-row-1 .feature-image-col {
        flex: 0 0 auto;
    }
    
    /* Google Fact Check Integration */
    .gfci-container {
        gap: 60px;
    }
    
    .gfci-main-heading {
        font-size: 40px;
        line-height: 38px;
    }
    
    .gfci-feature-card {
        width: 100%;
        max-width: 480px;
    }
    
    /* Content Types */
    .content-types-cards {
        gap: 40px;
    }
    
    /* Tech Stack */
    .tech-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    /* AI Demo */
    .demo-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    /* Testimonials */
    .testimonials-wrapper {
        max-width: 1200px;
        padding: 40px 40px;
    }
    
    .testimonials-reviews-grid {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 24px;
    }
    
    .review-card-1,
    .review-card-2,
    .review-card-3 {
        width: 291.4px;
    }
    
    /* Pricing - Desktop */
    .pricing-main-title {
        font-size: 40px;
    }
    
    .pricing-cards-wrapper {
        gap: 75px;
    }
    
    /* Footer */
    .footer-wrapper {
        width: 933.69px;
    }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
    .container {
        padding: 0 40px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 81.65px;
    }
    
    .hero-description {
        font-size: 18.93px;
    }
    
    /* All grids maintain their desktop layout */
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }
}

/* Ultra-wide (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 40px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 20px 16px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .app-store-buttons {
        margin-bottom: 10px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-logo-img,
    .footer-logo-img,
    .store-icon-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@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;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .app-store-buttons,
    .email-signup {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    .hero-title,
    .hero-description {
        color: #000;
    }
    
    .section-title {
        color: #000;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-plan-card {
        border: 1px solid #000;
        break-inside: avoid;
    }
}
