/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0077b6;
    border: 2px solid #0077b6;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #0077b6;
    color: white;
    transform: translateY(-2px);
}

.btn-link {
    color: #0077b6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.btn-link:hover {
    border-bottom-color: #0077b6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.cookie-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-accept {
    background: #0077b6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-settings,
.btn-reject {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

/* Header */
.header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0077b6;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 16px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #0077b6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-contact {
    color: #0077b6;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-contact:hover {
    background: rgba(0, 119, 182, 0.1);
}

.btn-login {
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-login:hover {
    background: #333;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: #f8fafb url('https://cdn.prod.website-files.com/684ad4653ca975578cb34745/684ad4653ca975578cb34893_Group%20797.svg') no-repeat right top;
    background-size: cover;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-background {
    display: none;
}

.geometric-pattern {
    position: relative;
    width: 100%;
    height: 100%;
}

.diamond {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #a8c8e1;
    transform: rotate(45deg);
    opacity: 0.8;
    border-radius: 2px;
}

.diamond-1 { top: 10%; right: 20%; }
.diamond-2 { top: 20%; right: 10%; }
.diamond-3 { top: 30%; right: 40%; }
.diamond-4 { top: 40%; right: 30%; }
.diamond-5 { top: 50%; right: 15%; }
.diamond-6 { top: 60%; right: 35%; }
.diamond-7 { top: 70%; right: 25%; }
.diamond-8 { top: 80%; right: 45%; }

/* Additional diamonds for more pattern density */
.geometric-pattern::before,
.geometric-pattern::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #c2d9ec;
    transform: rotate(45deg);
    opacity: 0.6;
    border-radius: 2px;
}

.geometric-pattern::before {
    top: 35%; right: 55%;
}

.geometric-pattern::after {
    top: 65%; right: 55%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.text-blue {
    color: #0077b6;
}

.hero-subtitle {
    font-size: 18px;
    color: #516173;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-demo {
    background: #122b39;
    color: #ffffff;
    border: 1px solid rgba(18, 43, 57, 0.2);
    padding: 8px 14px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-demo::after {
    content: '\2192';
    font-size: 14px;
}

.btn-demo:hover {
    background: #0f2430;
    transform: translateY(-1px);
}

/* Client Logos */
.client-logos {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.logo-carousel { position: relative; }
.logo-track {
    display: flex;
    gap: 80px;
    animation: logoScroll 40s linear infinite;
    will-change: transform;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 0.8;
    filter: grayscale(50%);
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-item span {
    font-size: 12px;
    color: #999;
    text-align: center;
    font-weight: 400;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Introduction */
.introduction {
    background: #f8f9fa;
    padding: 80px 0 0;
    text-align: center;
}

.intro-text {
    font-size: 24px;
    color: #333;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.intro-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.category {
    font-size: 13px;
    font-weight: 600;
    color: #0f2430;
    background: #eef5f9;
    border: 1px solid #d9e6ee;
    padding: 8px 14px;
    border-radius: 9999px;
}

/* Features */
.services-tabs { padding: 20px 0 0; background:#f3f7fb; }
.tabs-nav { display:flex; gap:12px; justify-content:center; margin-bottom:64px; }
.tab-item { 
    background:#eef5f9; 
    color:#0f2430; 
    border:1px solid #d9e6ee; 
    padding:8px 14px; 
    border-radius:9999px; 
    font-weight:600; 
    font-size:13px; 
    cursor:pointer; 
    transition:all .25s cubic-bezier(.25,.1,.25,1);
}
.tab-item.active { background:#0f2430; color:#ffffff; border-color:#0f2430; }
.tabs-content { position:relative; }
.tab-pane { display:none; opacity:0; transform:translateY(8px); transition:opacity .3s ease, transform .3s ease; }
.tab-pane.active { display:block; opacity:1; transform:translateY(0); }

.features { padding: 60px 0 100px; background:#fff; }

.feature {
    margin-bottom: 120px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-reverse .feature-content {
    grid-template-columns: 1fr 1fr;
}

.feature-reverse .feature-text {
    order: 2;
}

.feature-reverse .feature-image {
    order: 1;
}

.feature-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.feature-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Statistics */
.statistics {
    background: #f8f9fa;
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
.stat-circle { width: 280px; height: 280px; border: 1px solid #e6edf2; border-radius: 50%; display:flex; align-items:center; justify-content:center; margin-bottom: 24px; }
.stat-number { font-size: 60px; font-weight: 700; color: #0f2430; line-height: 1; }
.stat-text { font-size: 14px; color: #516173; line-height: 1.6; max-width: 320px; }

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #fdf4e8;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonials-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.testimonials-navigation,
.insights-navigation {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow:disabled:hover {
    background: transparent;
    color: #1a1a1a;
    transform: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

.testimonial-link {
    color: #0077b6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.testimonial-link:hover {
    border-bottom-color: #0077b6;
}

/* Insights */
.insights {
    background: #f8f9fa;
    padding: 100px 0;
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.insights-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.insights-controls {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.indicator-circle {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6a00;
    margin-right: 8px;
}

.insights-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.insights-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.insights-link.active,
.insights-link:hover {
    color: #0077b6;
    border-bottom-color: #0077b6;
}

.slider-dots { display:flex; gap:8px; align-items:center; }
.slider-dots .dot { width:8px; height:8px; border-radius:50%; background:#c7d6e2; opacity:0.6; }
.slider-dots .dot.active { background:#0f2430; opacity:1; }

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.insight-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.insight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.05), rgba(0, 180, 216, 0.05));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 119, 182, 0.1);
}

.insight-card:hover::after {
    opacity: 1;
}

.insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.insight-category {
    font-size: 12px;
    font-weight: 600;
    color: #0077b6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}

.insight-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    background: #c8e0fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url('https://cdn.prod.website-files.com/684ad4653ca975578cb34745/684ad4653ca975578cb34893_Group%20797.svg');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    text-align: left;
}

.cta-text h2 {
    font-size: 52px;
    font-weight: 700;
    color: #0f2430;
    margin-bottom: 48px;
    line-height: 1.1;
    max-width: 560px;
}

.cta-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-image {
    text-align: center;
    position: relative;
}

.cta-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

/* Webinar Banner */
.webinar-banner {
    background: #0f2430;
    color: white;
    padding: 32px 0;
    border-bottom: 1px solid #2a3f4d;
}

.webinar-content {
    text-align: center;
}

.webinar-date {
    font-size: 14px;
    color: #7fa3b8;
    margin-bottom: 8px;
    font-weight: 500;
}

.webinar-label {
    font-size: 12px;
    color: #7fa3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    font-weight: 600;
}

.webinar-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.webinar-description {
    font-size: 16px;
    color: #b8c5d1;
    margin-bottom: 24px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.webinar-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.btn-webinar {
    background: #0077b6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-webinar:hover {
    background: #005a8a;
    transform: translateY(-1px);
}

.webinar-read-more {
    color: #7fa3b8;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.2s ease;
}

.webinar-read-more:hover {
    color: white;
}

/* Newsletter */
.newsletter {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    min-width: 250px;
}

.newsletter-success,
.newsletter-error {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
}

.newsletter-success {
    background: #d4edda;
    color: #155724;
}

.newsletter-error {
    background: #f8d7da;
    color: #721c24;
}

/* Webinar Banner */
.webinar-banner {
    background: #fff3cd;
    padding: 40px 0;
    border-left: 4px solid #ffc107;
}

.webinar-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.webinar-date {
    font-size: 14px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 8px;
    display: block;
}

.webinar-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #856404;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.webinar-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.webinar-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.webinar-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0b2f3a;
    padding: 80px 0 40px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00b4d8;
}

.footer-social {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8c5d1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    justify-content: flex-end;
}

.social-link:hover {
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-link:hover svg {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    color: #8a9ba8;
    text-align: right;
}

.back-to-top {
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 14px;
    text-decoration: underline;
}

.back-to-top:hover {
    color: white;
}

.made-by {
    color: #7fa3b8;
    font-size: 12px;
    margin-top: 40px;
}

.back-to-top {
    color: #00b4d8;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: #0077b6;
}

.made-by {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .feature-content {
        gap: 60px;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 42px;
    }
    
    .cta-image img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-text h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .cta-image img {
        width: 250px;
        height: 250px;
    }
    
    .diamond {
        width: 15px;
        height: 15px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 32px;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-reverse .feature-text {
        order: 1;
    }
    
    .feature-reverse .feature-image {
        order: 2;
    }
    
    .feature-text h2 {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .insights-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .testimonials-header .section-title,
    .insights-header .section-title {
        text-align: center;
    }
    
    .insights-controls {
        justify-content: center;
        gap: 20px;
    }
    
    .webinar-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-text h2 {
        font-size: 28px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-input {
        min-width: auto;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Utility classes */
.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #0077b6;
    outline-offset: 2px;
}

/* Loading animation */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Refined animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}
