/* Design System */
:root {
    /* Colors */
    --primary: #FF9933;
    --primary-dark: #CC7A29;
    --primary-light: #FFF0E6;
    
    --secondary: #138808;
    --text-main: #000080;
    --text-muted: #4F566B;
    
    --bg-main: #FFFFFF;
    --bg-alt: #F7FFF7;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(255, 153, 51, 0.15);
    --shadow-lg: 0 20px 40px -5px rgba(255, 153, 51, 0.20);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #138808 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-secondary-white, .btn-primary-small, .btn-white {
    display: inline-block;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
    border: none;
}

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

.btn-primary-small {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-primary-small:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    padding: 14px 30px;
    font-size: 1.05rem;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
}

.btn-secondary-white {
    background-color: transparent;
    color: var(--white);
    padding: 14px 30px;
    font-size: 1.05rem;
    border: 2px solid var(--white);
}

.btn-secondary-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
    border: none;
}

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

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    width: auto;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: brightness(1.05) contrast(1.2);
    pointer-events: none;
}

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

.nav-links a:not(.btn-primary-small) {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition);
}

/* Slider / Hero Section */
.hero-slider-container {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: var(--bg-main);
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.92)), url('banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    gap: 60px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-content {
    flex: 1.2;
    max-width: 600px;
}

.hero-slide-visual {
    flex: 0.8;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide h1 {
    font-size: 3.8rem;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.slide p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Slide Visuals */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.main-card {
    width: 100%;
    max-width: 380px;
    height: 260px;
    padding: 20px;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.circle.red { background-color: #FF5F56; }
.circle.yellow { background-color: #FFBD2E; }
.circle.green { background-color: #27C93F; }

.skeleton-line {
    height: 12px;
    background: rgba(0, 82, 255, 0.08);
    border-radius: 6px;
    margin-bottom: 16px;
}
.skeleton-line.title { width: 60%; height: 20px; }
.skeleton-line.short { width: 40%; }
.skeleton-chart-1 {
    height: 90px;
    background: linear-gradient(180deg, rgba(0, 82, 255, 0.08) 0%, rgba(255,255,255,0) 100%);
    border-radius: 12px;
    margin-top: 30px;
    position: relative;
}
.skeleton-chart-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.floating-card-1, .floating-card-2 {
    position: absolute;
    padding: 16px 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floating-card-1 {
    top: 10%;
    right: -10px;
    animation: float 5s ease-in-out infinite reverse;
}

.floating-card-2 {
    bottom: 15%;
    left: -20px;
    animation: float 7s ease-in-out infinite 1s;
}

.stat {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.icon-star {
    font-size: 1.8rem;
    color: #FFBD2E;
}

/* Visuals customization for other slides */
.code-visual {
    background: rgba(10, 37, 64, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.code-body {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #E2E8F0;
    text-align: left;
}
.code-line { margin-bottom: 8px; }
.indent-1 { margin-left: 20px; }
.indent-2 { margin-left: 40px; }
.c-keyword { color: #FF79C6; }
.c-class { color: #8BE9FD; }
.c-method { color: #50FA7B; }
.c-string { color: #F1FA8C; }
.c-boolean { color: #BD93F9; }

.marketing-visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bar-chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    margin-top: 10px;
}
.bar-col {
    width: 25px;
    height: var(--height);
    background-color: var(--primary-light);
    border-radius: 6px 6px 0 0;
    transition: var(--transition);
}
.bar-col.active {
    background-color: var(--primary);
}

/* Background Blurs */
.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.blue-blur {
    width: 400px;
    height: 400px;
    background: rgba(0, 82, 255, 0.15);
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.light-blue-blur {
    width: 350px;
    height: 350px;
    background: rgba(0, 198, 255, 0.12);
    top: 20%;
    right: 5%;
}

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

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 10%;
    display: flex;
    gap: 15px;
    z-index: 5;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    color: var(--secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.slider-dots {
    position: absolute;
    bottom: 65px;
    right: 10%;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 25px;
    border-radius: 5px;
}

/* About Us Section */
.about-section {
    padding: 120px 20px;
    background-color: var(--white);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    height: 480px;
}

.about-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-animation 12s infinite alternate;
}

@keyframes blob-animation {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%; }
    100% { border-radius: 70% 30% 50% 50% / 40% 30% 70% 60%; }
}

.about-card {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    padding: 40px;
    border-radius: 24px;
}

.about-card-badge {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

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

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-top: 16px;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-content .secondary-p {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.founder-info {
    display: flex;
    flex-direction: column;
}

.founder-info strong {
    color: var(--secondary);
    font-size: 1.05rem;
}

.founder-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 120px 20px;
    background-color: var(--bg-alt);
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-top: 12px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #00C6FF 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background-color: var(--primary-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-icon {
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.plus {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-box p {
    width: 100%;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 8px;
}

/* Mid Promotional Banner */
.promo-banner {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #002D62 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 82, 255, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    top: -50px;
    left: -50px;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.promo-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.promo-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Testimonials Carousel */
.testimonials-section {
    padding: 120px 20px;
    background-color: var(--bg-alt);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
}

.testimonial-card {
    position: absolute;
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-light);
    line-height: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.user-details h4 {
    font-size: 1.05rem;
    color: var(--secondary);
}

.user-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.test-control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--white);
    color: var(--secondary);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.test-control-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Blog Grid */
.blog-section {
    padding: 120px 20px;
    background-color: var(--white);
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

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

.blog-image-placeholder {
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, #00C6FF 100%);
    position: relative;
}

.blog-image-placeholder.scale-blue {
    background: linear-gradient(135deg, #0A2540 0%, var(--primary) 100%);
}

.blog-image-placeholder.dark-blue {
    background: linear-gradient(135deg, #00C6FF 0%, #0043D1 100%);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

/* Our Team Section */
.team-section {
    padding: 120px 20px;
    background-color: var(--bg-alt);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.team-image-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    background-color: var(--primary-light);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.team-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,0.8) 100%);
}

.team-avatar-placeholder.blue-tint {
    color: #0084FF;
}

.team-avatar-placeholder.dark-tint {
    color: var(--secondary);
}

.team-avatar-placeholder.scale-tint {
    color: #00C6FF;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social a:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Newsletter Section */
.newsletter-section {
    padding: 120px 20px;
    background-color: var(--white);
}

.newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.04) 0%, rgba(0, 198, 255, 0.04) 100%);
    border: 1px solid rgba(0, 82, 255, 0.08);
    border-radius: 30px;
    padding: 80px 40px;
}

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

.newsletter-content h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 24px;
    font-size: 1rem;
    font-family: var(--font-body);
    border-radius: 50px;
}

.newsletter-form button {
    border: none;
}

.newsletter-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 90px 20px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-social p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.social-icon:hover {
    background: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
        justify-content: center;
        gap: 40px;
    }
    
    .hero-slide-content {
        max-width: 100%;
    }
    
    .slide h1 {
        font-size: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }

    .hero-slide-visual {
        display: none; /* Hide complex floating visual on medium devices for performance */
    }

    .about-container {
        flex-direction: column;
        gap: 50px;
    }

    .about-image-wrapper {
        height: 380px;
        width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .slide h1 {
        font-size: 2.4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border: none;
        gap: 12px;
    }

    .newsletter-input {
        background: var(--white);
        padding: 16px 24px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: var(--shadow-sm);
    }

    .newsletter-container {
        padding: 50px 20px;
    }

    .promo-content h2 {
        font-size: 2rem;
    }

    .promo-actions {
        flex-direction: column;
        gap: 12px;
    }

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