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

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=League+Gothic&display=swap');

:root {
    /* DropGPT Kurumsal Renkler - Turkuaz Palette */
    --primary: #19B2C0;
    --primary-light: #5ED0E3;
    --primary-lighter: #A2EEFA;
    --primary-dark: #11798B;
    --primary-darker: #09424B;

    /* İkincil Turkuaz (Yeşilimsi) */
    --secondary: #48C0B3;
    --secondary-dark: #338D84;
    --secondary-darker: #1C5953;
    --secondary-light: #78D7CE;
    --secondary-lighter: #A8EDE6;

    /* Nötr Renkler */
    --black: #000000;
    --dark: #474747;
    --gray: #8C8C8C;
    --light-gray: #D2D2D2;
    --lighter-gray: #F3F4F6;
    --white: #FFFFFF;

    --shadow: 0 4px 6px -1px rgba(25, 178, 192, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(25, 178, 192, 0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

/* Headline Font - League Gothic */
.hero-title,
.hero-badge-text,
h1, h2 {
    font-family: 'League Gothic', 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* University Banner - Cosmic Theme */
.university-banner {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #dee5ff;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

.university-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(25, 178, 192, 0.15);
    border: 1px solid rgba(94, 208, 227, 0.3);
    padding: 4px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5ED0E3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.university-text {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ========================================
   DROPGPT NAVBAR - White Clean Style
   ======================================== */

.header-dropgpt {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 6px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-dropgpt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo-dropgpt {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

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

.nav-logo-dropgpt img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.nav-logo-dropgpt:hover img {
    transform: scale(1.02);
}

.nav-logo-dropgpt:hover img {
    transform: scale(1.02);
}

.nav-links-dropgpt {
    display: none;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
}

@media (min-width: 992px) {
    .nav-links-dropgpt {
        display: flex;
    }
}

.nav-links-dropgpt li {
    margin: 0;
}

.nav-links-dropgpt a {
    color: #474747;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links-dropgpt a:hover {
    color: #19B2C0;
    background: rgba(25, 178, 192, 0.08);
}

/* Active Nav Link */
.nav-links-dropgpt a.nav-link-active {
    background: rgba(25, 178, 192, 0.15);
    color: #19B2C0;
    font-weight: 600;
}

/* Header CTA Button */
.btn-header-dropgpt {
    display: none;
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(25, 178, 192, 0.3);
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .btn-header-dropgpt {
        display: inline-block;
    }
}

.btn-header-dropgpt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 178, 192, 0.4);
}

.btn-header-dropgpt:active {
    transform: scale(0.98);
}

/* Mobile Menu Toggle */
.nav-toggle-dropgpt {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 992px) {
    .nav-toggle-dropgpt {
        display: none;
    }
}

.nav-toggle-dropgpt span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #474747;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-dropgpt:hover span {
    background: #19B2C0;
}

/* Mobile Menu */
.nav-mobile-dropgpt {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid #E5E7EB;
    margin-top: 16px;
}

.nav-mobile-dropgpt.active {
    display: flex;
}

@media (min-width: 992px) {
    .nav-mobile-dropgpt {
        display: none !important;
    }
}

.nav-mobile-dropgpt a {
    color: #474747;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-mobile-dropgpt a:hover,
.nav-mobile-dropgpt a.nav-link-active {
    background: rgba(25, 178, 192, 0.1);
    color: #19B2C0;
}

.nav-mobile-dropgpt .btn-header-dropgpt {
    display: block;
    text-align: center;
    margin-top: 12px;
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 16px;
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-mobile a:hover {
    color: #5ED0E3;
}

.nav-mobile .btn-header {
    display: inline-block;
    text-align: center;
    margin-top: 8px;
}

/* Hero Section - Cosmic Theme */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E6FAFB 50%, #A2EEFA 100%);
    text-align: center;
    color: #474747;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(25, 178, 192, 0.1);
    border: 1px solid rgba(25, 178, 192, 0.3);
    margin-bottom: 32px;
}

.hero-badge-icon {
    color: #19B2C0;
    font-size: 14px;
}

.hero-badge-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #11798B;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: #09424B;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #474747;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Video Container - Glass Card */
.video-container {
    position: relative;
    width: 100%;
    max-width: 896px;
    margin: 0 auto 48px;
    aspect-ratio: 16 / 9;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #FFFFFF;
    border: 2px solid rgba(25, 178, 192, 0.2);
    box-shadow: 0 20px 40px -12px rgba(25, 178, 192, 0.25);
    cursor: pointer;
}

.video-container:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-container:hover .video-play-btn {
    transform: scale(1.1);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.7s ease;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(25, 178, 192, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    color: #5ED0E3;
    margin-left: 4px;
}

/* Embedded Video State */
.video-container.playing {
    cursor: default;
}

.video-container.playing .video-thumbnail,
.video-container.playing .video-play-btn {
    display: none;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hero CTA Button */
.hero .btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    color: white;
    font-weight: 700;
    padding: 20px 48px;
    border-radius: 9999px;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(17, 121, 139, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -12px rgba(17, 121, 139, 0.5);
}

.hero .btn-hero:active {
    transform: scale(0.95);
}

/* Legacy video wrapper support */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 48px;
    box-shadow: 0 20px 40px -12px rgba(25, 178, 192, 0.25);
    background: #FFFFFF;
    border: 2px solid rgba(25, 178, 192, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA Sections */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--light-gray);
}

.cta-secondary {
    background: var(--secondary);
}

.cta-secondary .btn-primary {
    color: var(--secondary);
}

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

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.problem-content {
    max-width: 700px;
    margin: 0 auto;
}

.problem-content ul {
    list-style: none;
}

.problem-content li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1.1rem;
}

.problem-content li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #EF4444;
    font-size: 1.25rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    color: var(--gray);
}

/* Proof Section */
.proof-section {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author strong {
    display: block;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Objection Section */
.objection-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.faq-question {
    color: var(--dark);
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--gray);
}

/* Risk Section */
.risk-section {
    padding: 80px 0;
    background: var(--white);
}

.guarantee-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #E6FAFB 0%, #B8F0F5 100%);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid var(--secondary);
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.guarantee-box h2 {
    color: #09424B;
    margin-bottom: 16px;
}

.guarantee-box p {
    color: #11798B;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #374151 100%);
    color: var(--white);
    text-align: center;
}

.final-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 16px 0 40px;
}

.no-obligation {
    margin-top: 16px;
    opacity: 0.7;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    padding: 24px 0;
    background: var(--dark);
    color: var(--gray);
    text-align: center;
    font-size: 0.875rem;
}

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

    .cta-section,
    .problem-section,
    .process-section,
    .proof-section,
    .objection-section,
    .risk-section {
        padding: 60px 0;
    }

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

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

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

.hero-content,
.step,
.testimonial,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   EXAMPLE PAGES STYLES
   ======================================== */

.examples-page {
    background: #020617;
    min-height: 100vh;
    padding: 60px 0 100px;
    color: #dee5ff;
}

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

.examples-badge {
    display: inline-block;
    background: rgba(25, 178, 192, 0.15);
    border: 1px solid rgba(94, 208, 227, 0.3);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5ED0E3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.examples-header h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #A2EEFA 0%, #19B2C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.examples-header p {
    color: #94a3b8;
    font-size: 1.125rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.example-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 32px;
}

.example-card.wide {
    grid-column: 1 / -1;
}

.example-label {
    display: inline-block;
    background: rgba(94, 208, 227, 0.1);
    color: #5ED0E3;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.example-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #dee5ff;
}

.example-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Problem Examples */
.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    padding-left: 28px;
    position: relative;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f87171;
}

.stats-row {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f87171;
    font-family: 'Manrope', sans-serif;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.checklist label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    cursor: pointer;
}

.checklist input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #5ED0E3;
}

.highlight {
    background: rgba(25, 178, 192, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #5ED0E3;
    margin-top: 16px;
    color: #A2EEFA;
}

.example-card blockquote {
    font-style: italic;
    color: #cbd5e1;
    border-left: 3px solid #5ED0E3;
    padding-left: 20px;
    margin: 16px 0;
}

/* Testimonial Examples */
.testimonial-box {
    background: rgba(15, 23, 42, 0.5);
    padding: 24px;
    border-radius: 16px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(94, 208, 227, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

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

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #dee5ff;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #64748b;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.before, .after {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    border-radius: 12px;
}

.before {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.after {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.ba-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.before .ba-label { color: #f87171; }
.after .ba-label { color: #34d399; }

.before p { color: #fca5a5; }
.after p { color: #6ee7b7; margin-bottom: 0; }

.arrow {
    font-size: 2rem;
    color: #5ED0E3;
}

.testimonial-name {
    margin-top: 16px;
    color: #64748b;
    font-size: 0.875rem;
}

.video-testimonial {
    display: flex;
    gap: 20px;
    align-items: center;
}

.video-placeholder {
    width: 120px;
    height: 80px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.play-icon {
    font-size: 1.5rem;
    color: #5ED0E3;
}

.video-placeholder span {
    font-size: 0.75rem;
    color: #64748b;
}

.video-info strong {
    display: block;
    color: #dee5ff;
    margin-bottom: 4px;
}

.video-info p {
    margin: 0;
    font-size: 0.875rem;
}

.tip {
    font-size: 0.875rem;
    color: #5ED0E3;
    font-style: italic;
    margin-top: 16px;
    margin-bottom: 0;
}

.stats-testimonial {
    display: flex;
    justify-content: space-around;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
}

.stat-item {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #5ED0E3;
    font-family: 'Manrope', sans-serif;
}

.stat-desc {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-mini {
    background: rgba(15, 23, 42, 0.5);
    padding: 24px;
    border-radius: 16px;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-logo {
    border-radius: 8px;
}

.case-header strong {
    display: block;
    color: #dee5ff;
}

.case-header span {
    font-size: 0.875rem;
    color: #64748b;
}

.case-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.case-section h4 {
    color: #5ED0E3;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.case-section p {
    margin: 0;
    font-size: 0.9rem;
}

/* Solution Examples */
.steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-item .step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 12px;
}

.step-item h4 {
    color: #dee5ff;
    margin-bottom: 4px;
}

.step-item p {
    font-size: 0.875rem;
    margin: 0;
}

.step-arrow {
    font-size: 1.5rem;
    color: #5ED0E3;
}

.timeline {
    position: relative;
    padding-left: 100px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 75px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(94, 208, 227, 0.3);
}

.timeline-item {
    position: relative;
    padding: 16px 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 24px;
    width: 10px;
    height: 10px;
    background: #5ED0E3;
    border-radius: 50%;
}

.timeline-week {
    position: absolute;
    left: -100px;
    width: 70px;
    font-size: 0.75rem;
    color: #5ED0E3;
    font-weight: 600;
}

.timeline-content strong {
    display: block;
    color: #dee5ff;
    margin-bottom: 4px;
}

.timeline-content p {
    margin: 0;
    font-size: 0.875rem;
}

.solution-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
}

.check-item.done {
    background: rgba(52, 211, 153, 0.1);
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.check-item.done .check-icon {
    color: #34d399;
}

.check-item span:last-child {
    color: #94a3b8;
}

.check-item.done span:last-child {
    color: #6ee7b7;
}

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

@media (max-width: 600px) {
    .process-comparison {
        grid-template-columns: 1fr;
    }
}

.process-before, .process-after {
    padding: 20px;
    border-radius: 12px;
}

.process-before {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.process-after {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.process-before h4 { color: #f87171; }
.process-after h4 { color: #34d399; }

.process-before ul, .process-after ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-before li, .process-after li {
    padding: 8px 0;
    color: #94a3b8;
}

.visual-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.flow-step {
    text-align: center;
    padding: 16px;
    min-width: 100px;
}

.flow-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.flow-step strong {
    display: block;
    color: #dee5ff;
    margin-bottom: 4px;
}

.flow-step p {
    font-size: 0.75rem;
    margin: 0;
}

.flow-connector {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #5ED0E3, #19B2C0);
}

/* CTA Examples */
.cta-demo {
    background: rgba(15, 23, 42, 0.5);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.cta-demo h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #dee5ff;
    margin-bottom: 12px;
}

.cta-demo p {
    margin-bottom: 20px;
}

.btn-demo-primary,
.btn-demo-urgency,
.btn-demo-value,
.btn-demo-social,
.btn-demo-guarantee {
    display: inline-block;
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-demo-secondary {
    display: inline-block;
    background: transparent;
    color: #5ED0E3;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 1rem;
    border: 1px solid #5ED0E3;
    cursor: pointer;
    margin-left: 12px;
}

.cta-note {
    display: block;
    margin-top: 12px;
    font-size: 0.875rem;
    color: #64748b;
}

.urgency-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    display: inline-block;
}

.value-list li {
    padding: 8px 0;
    color: #94a3b8;
}

.avatars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.avatars-row img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #020617;
    margin-left: -10px;
}

.avatars-row img:first-child {
    margin-left: 0;
}

.avatars-row span {
    background: #19B2C0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -10px;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.final-cta {
    background: linear-gradient(135deg, rgba(25, 178, 192, 0.1), rgba(72, 192, 179, 0.1));
    border: 1px solid rgba(94, 208, 227, 0.2);
}

.final-cta h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-buttons-row {
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 0.875rem;
    color: #64748b;
}

.micro-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.micro-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
}

.micro-cta span {
    color: #94a3b8;
}

.micro-cta a {
    color: #5ED0E3;
    text-decoration: none;
    font-weight: 500;
}

.micro-cta a:hover {
    text-decoration: underline;
}

/* Examples CTA */
.examples-cta {
    text-align: center;
    padding: 60px;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
}

.examples-cta h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #dee5ff;
}

.examples-cta p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.examples-cta .btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    color: white;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 9999px;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 40px -12px rgba(17, 121, 139, 0.4);
}

/* Nav Active State */
.nav-links a.active {
    color: #5ED0E3;
}

/* ========================================
   TESTIMONIALS SHOWCASE SECTION
   ======================================== */

.testimonials-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

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

.testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .testimonials-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.testimonials-header-content {
    max-width: 600px;
}

.testimonials-showcase .section-title {
    text-align: left !important;
    margin-bottom: 16px !important;
    color: #1f2937 !important;
}

.testimonials-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonial-nav-btn.prev {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #6b7280;
}

.testimonial-nav-btn.prev:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.testimonial-nav-btn.next {
    background: var(--primary);
    border: none;
    color: white;
    box-shadow: 0 4px 14px rgba(25, 178, 192, 0.3);
}

.testimonial-nav-btn.next:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.testimonials-slider {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px !important;
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 300px !important;
        width: 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
        padding: 24px;
    }
}

.testimonial-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars span {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.testimonial-author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.testimonial-author-info span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Stats Row */
.testimonials-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .testimonials-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-box {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(25, 178, 192, 0.1);
}

.stat-value {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-value {
    transform: scale(1.05);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ========================================
   CTA2 - COSMIC HERO SECTION
   ======================================== */

.cta2-cosmic {
    position: relative;
    padding: 48px 24px 96px;
    min-height: 751px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #090e19;
    overflow: hidden;
}

.cta2-cosmic .cosmic-glow {
    background: radial-gradient(circle at center, rgba(94, 208, 227, 0.08) 0%, transparent 70%);
}

.cta2-cosmic .glass-panel {
    background: rgba(31, 38, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Background */
.cta2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: screen;
}

.cta2-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #090e19, transparent, #090e19);
}

.cta2-bg-glow {
    position: absolute;
    inset: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(94, 208, 227, 0.08) 0%, transparent 70%);
}

/* Content */
.cta2-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

/* Badge */
.cta2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    margin-bottom: 32px;
    border-radius: 9999px;
    background: rgba(62, 70, 93, 0.3);
    border: 1px solid rgba(67, 72, 85, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cta2-badge-icon {
    font-size: 12px;
    color: #48C0B3;
}

.cta2-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #d9e2fe;
}

/* Headline */
.cta2-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #e7eafb;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta2-headline .text-gradient {
    background: linear-gradient(to right, #5ED0E3, #48C0B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheadline */
.cta2-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #a6abba;
    margin-bottom: 48px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Buttons */
.cta2-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0 16px;
    margin-bottom: 40px;
}

.cta2-btn-primary {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #5ED0E3, #6f9fff);
    color: #000000;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(94, 208, 227, 0.15);
    transition: all 0.2s ease;
}

.cta2-btn-primary:hover {
    transform: scale(1.02);
}

.cta2-btn-primary:active {
    transform: scale(0.95);
}

.cta2-btn-secondary {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background: rgba(31, 38, 54, 0.4);
    border: 1px solid rgba(67, 72, 85, 0.15);
    color: #e7eafb;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.2s ease;
}

.cta2-btn-secondary:hover {
    background: rgba(31, 38, 54, 1);
}

.cta2-btn-secondary:active {
    transform: scale(0.95);
}

/* Trust Indicators */
.cta2-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 24px;
    padding: 0 24px;
}

.cta2-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta2-trust-icon {
    color: #5ED0E3;
    font-size: 14px;
}

.cta2-trust-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #525b72;
    font-weight: 500;
}

/* Glass decorations */
.cta2-glass-1 {
    position: absolute;
    bottom: -48px;
    right: -48px;
    width: 192px;
    height: 192px;
    background: rgba(31, 38, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 1px solid rgba(67, 72, 85, 0.1);
    opacity: 0.4;
    filter: blur(4px);
    pointer-events: none;
}

.cta2-glass-2 {
    position: absolute;
    top: 96px;
    left: -64px;
    width: 128px;
    height: 128px;
    background: rgba(31, 38, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 1px solid rgba(67, 72, 85, 0.1);
    opacity: 0.3;
    filter: blur(8px);
    pointer-events: none;
}

/* Status HUD */
.cta2-hud {
    position: relative;
    z-index: 20;
    margin-top: -48px;
    padding: 0 24px;
    background: #090e19;
    padding-bottom: 48px;
}

.cta2-hud-inner {
    background: rgba(31, 38, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(67, 72, 85, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 32rem;
    margin: 0 auto;
}

.cta2-hud-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta2-hud-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #525b72;
}

.cta2-hud-status {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #48C0B3;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta2-hud-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48C0B3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cta2-hud-divider {
    height: 40px;
    width: 1px;
    background: rgba(67, 72, 85, 0.2);
}

.cta2-hud-icons {
    display: flex;
    margin-left: -8px;
}

.cta2-hud-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #131927;
    background: #242c3d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
}

.cta2-hud-icon svg {
    width: 16px;
    height: 16px;
}

.cta2-hud-icon:first-child svg {
    color: #5ED0E3;
}

.cta2-hud-icon:last-child svg {
    color: #48C0B3;
}

/* Responsive */
@media (min-width: 768px) {
    .cta2-cosmic {
        padding: 48px 24px 96px;
    }

    .cta2-content {
        max-width: 32rem;
    }

    .cta2-headline {
        font-size: 3rem;
    }
}

/* ========================================
   HEADER TRUST BAR
   ======================================== */

.header-trust-bar {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 8px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .header-trust-bar {
        display: flex;
    }
}

.header-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #48C0B3;
    font-size: 0.75rem;
    font-weight: 500;
}

.header-trust-item svg {
    color: #19B2C0;
}

.header-trust-item span {
    color: #94a3b8;
}

/* ========================================
   OBJECTION SECTION ENHANCED
   ======================================== */

.objection-section-enhanced {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

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

.objection-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(25, 178, 192, 0.1);
    color: #19B2C0;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.objection-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.objection-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
}

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

@media (min-width: 1024px) {
    .objection-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-enhanced {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-enhanced:hover {
    border-color: #19B2C0;
    box-shadow: 0 4px 20px rgba(25, 178, 192, 0.1);
}

.faq-item-enhanced.active {
    border-color: #19B2C0;
    box-shadow: 0 8px 30px rgba(25, 178, 192, 0.15);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(25, 178, 192, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.faq-icon svg {
    color: #19B2C0;
}

.faq-question-text {
    flex: 1;
    font-family: 'Manrope', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1f2937;
}

.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-arrow svg {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item-enhanced.active .faq-arrow {
    background: #19B2C0;
}

.faq-item-enhanced.active .faq-arrow svg {
    color: white;
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding: 0 24px 24px 80px;
    color: #6b7280;
    line-height: 1.7;
}

.faq-item-enhanced.active .faq-content {
    display: block;
}

.faq-content ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.faq-content li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.faq-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #19B2C0;
    border-radius: 50%;
}

.timeline-mini {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

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

.timeline-mini-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #19B2C0, #11798B);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.timeline-mini-item strong {
    color: #1f2937;
}

.guarantee-highlight {
    background: linear-gradient(135deg, rgba(25, 178, 192, 0.1), rgba(17, 121, 139, 0.1));
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #19B2C0;
    color: #09424B;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Trust Box */
.objection-trust-box {
    position: sticky;
    top: 120px;
}

.trust-card {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 40px;
    color: #dee5ff;
}

.trust-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card-header svg {
    color: #48C0B3;
}

.trust-card-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list li svg {
    color: #19B2C0;
    flex-shrink: 0;
}

.trust-cta {
    text-align: center;
}

.btn-trust-cta {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(25, 178, 192, 0.3);
}

.btn-trust-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(25, 178, 192, 0.4);
}

.trust-cta-note {
    display: block;
    margin-top: 12px;
    color: #64748b;
    font-size: 0.875rem;
}

/* ========================================
   RISK REVERSAL SECTION
   ======================================== */

.risk-reversal-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #E6FAFB 50%, #E6FAFB 100%);
    position: relative;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .risk-reversal-content {
        grid-template-columns: 0.4fr 0.6fr;
    }
}

.risk-reversal-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.guarantee-shield {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(25, 178, 192, 0.1), rgba(17, 121, 139, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(25, 178, 192, 0.4);
    }
    50% {
        box-shadow: 0 0 0 30px rgba(25, 178, 192, 0);
    }
}

.guarantee-badge-float {
    position: absolute;
    bottom: -10px;
    background: linear-gradient(135deg, #19B2C0, #11798B);
    color: white;
    padding: 8px 20px;
    border-radius: 9999px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(25, 178, 192, 0.4);
}

.risk-reversal-text {
    max-width: 600px;
}

.risk-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(25, 178, 192, 0.1);
    color: #11798B;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.risk-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #09424B;
    margin-bottom: 20px;
}

.risk-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 32px;
}

.risk-description strong {
    color: #11798B;
}

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

.guarantee-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guarantee-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(25, 178, 192, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-feature-icon svg {
    color: #19B2C0;
}

.guarantee-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guarantee-feature-text strong {
    color: #09424B;
    font-size: 1rem;
}

.guarantee-feature-text span {
    color: #6b7280;
    font-size: 0.875rem;
}

.risk-quote {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #19B2C0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.risk-quote blockquote {
    font-style: italic;
    font-size: 1.0625rem;
    color: #374151;
    margin: 0 0 8px 0;
}

.risk-quote cite {
    color: #19B2C0;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========================================
   FINAL CTA ENHANCED
   ======================================== */

.final-cta-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.cta-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 9999px;
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.final-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #dee5ff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.final-cta-title .text-gradient {
    background: linear-gradient(135deg, #5ED0E3, #48C0B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-cta-value-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .final-cta-value-stack {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #19B2C0;
}

.value-item span {
    color: #94a3b8;
    font-size: 0.9375rem;
}

.final-cta-buttons {
    margin-bottom: 32px;
}

.btn-final-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 48px;
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(25, 178, 192, 0.4);
}

.btn-final-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 60px rgba(25, 178, 192, 0.5);
}

.btn-final-primary:active {
    transform: scale(0.98);
}

.btn-final-primary svg {
    transition: transform 0.3s ease;
}

.btn-final-primary:hover svg {
    transform: translateX(4px);
}

.final-cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.trust-element {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-element svg {
    color: #19B2C0;
}

.trust-element span {
    color: #64748b;
    font-size: 0.875rem;
}

.final-cta-micro {
    color: #525b72;
    font-size: 0.875rem;
}

/* Decorative Glows */
.final-cta-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 178, 192, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-glow-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(72, 192, 179, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-info {
    padding-right: 20px;
}

.contact-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(25, 178, 192, 0.1);
    color: #19B2C0;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.contact-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-feature svg {
    color: #19B2C0;
    flex-shrink: 0;
}

.contact-feature span {
    color: #374151;
    font-weight: 500;
}

/* Form Card */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #19B2C0;
    box-shadow: 0 0 0 3px rgba(25, 178, 192, 0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #19B2C0 0%, #11798B 100%);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(25, 178, 192, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(25, 178, 192, 0.4);
}

.btn-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-note {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Form Success State */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    min-height: 300px;
}

.form-success svg {
    color: #19B2C0;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.form-success p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   MOBILE RESPONSIVE - DropGPT
   ======================================== */

/* Mobile Navbar Adjustments */
@media (max-width: 991px) {
    .header-dropgpt {
        padding: 10px 0;
    }

    .nav-logo-dropgpt img {
        height: 38px;
    }

    .nav-dropgpt {
        gap: 16px;
    }

    .btn-header-dropgpt {
        display: none;
    }

    .nav-toggle-dropgpt {
        display: flex;
    }

    .nav-links-dropgpt {
        display: none;
    }
}

@media (max-width: 576px) {
    .nav-logo-dropgpt img {
        height: 32px;
    }

    .header-dropgpt {
        padding: 8px 0;
    }

    .nav-mobile-dropgpt {
        padding: 16px 0;
    }

    .nav-mobile-dropgpt a {
        font-size: 0.9375rem;
        padding: 10px 12px;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-badge {
        margin-bottom: 20px;
        padding: 6px 12px;
    }

    .hero-badge-text {
        font-size: 9px;
        letter-spacing: 0.15em;
    }

    .video-container {
        margin-bottom: 30px;
        border-radius: 1rem;
    }

    .hero .btn-hero {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Mobile CTA1 Section */
@media (max-width: 768px) {
    #cta1 {
        min-height: auto;
        padding: 60px 0;
    }

    #cta1 h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    #cta1 .max-w-2xl {
        text-align: center;
    }

    #cta1 .flex-col {
        align-items: center;
    }

    #cta1 .flex-wrap {
        justify-content: center;
    }

    #cta1 button {
        width: 100%;
        justify-content: center;
    }

    /* Hide floating stats on mobile */
    #cta1 .hidden.lg\\:block {
        display: none !important;
    }
}

/* Mobile Process Section */
@media (max-width: 768px) {
    #process {
        padding: 50px 0;
    }

    #process h2 {
        font-size: 1.75rem;
    }

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

    #process .group {
        padding: 24px;
    }
}

/* Mobile Proof Section */
@media (max-width: 768px) {
    #proof {
        padding: 50px 0;
    }

    #proof h2 {
        font-size: 1.75rem;
    }

    #proof .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    #proof .text-4xl {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    #proof .grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Mobile Form Section */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 24px;
        margin: 0 16px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }
}

/* Mobile Typography Adjustments */
@media (max-width: 576px) {
    h1, .hero-title {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    p {
        font-size: 0.9375rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* Mobile Button Adjustments */
@media (max-width: 576px) {
    .btn-hero,
    .btn-header-dropgpt,
    .cta2-btn-primary,
    .cta2-btn-secondary {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
}

/* Tailwind-style utilities for mobile */
@media (max-width: 768px) {
    .md\\:text-5xl {
        font-size: 1.75rem !important;
    }

    .md\\:text-lg {
        font-size: 1rem !important;
    }

    .md\\:py-24 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .lg\\:px-24 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
