/* Base Styles */
:root {
    --primary: #253c74;
    --primary-dark: #00091d;
    --secondary: #ee3897;
    --secondary-dark: #c42a7c;
    --dark: #000d21;
    --darker: #0f172a;
    --light: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --accent: #3a5ca6;
    --accent-2: #f36fb3;
    --success: #10b981;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: var(--font-secondary);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1.25rem;
    letter-spacing: normal;
}

h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    margin-bottom: 1rem;
    letter-spacing: normal;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    max-width: 65ch;
    line-height: 1.5;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.3);
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(79, 70, 229, 0.3);
    background: var(--secondary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-outline:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(255, 255, 255, 0.3);
}

section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* SVG Blob Patterns */
.blob {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.blob-1 {
    top: -15%;
    right: -10%;
    width: 40%;
    height: auto;
}

.blob-2 {
    bottom: -15%;
    left: -10%;
    width: 35%;
    height: auto;
}

.blob-3 {
    top: 40%;
    right: -5%;
    width: 25%;
    height: auto;
}

.blob-4 {
    bottom: 10%;
    right: 10%;
    width: 18%;
    height: auto;
}

.blob-small {
    width: 15% !important;
}

.blob-rotate {
    transform: rotate(180deg);
}

.text-gradient {
    color: var(--accent-2);
    display: inline-block;
}

.text-accent {
    color: var(--accent-2);
}

.section-divider {
    height: 150px;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.divider-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: var(--light);
}

.divider-dark {
    fill: var(--dark);
}

.divider-primary {
    fill: var(--primary);
}

.section-tag {
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 1rem;
    color: var(--accent-2);
    margin-bottom: 0.5rem;
    display: block;
}

.highlight-box {
    border-radius: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin: 0 0.25rem;
}

.highlight-primary {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary);
}

.highlight-secondary {
    background: rgba(79, 70, 229, 0.12);
    color: var(--secondary);
}

.highlight-accent {
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
}

.highlight-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(10px);
}

header.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--light);
}

/* Hero Section */
.hero {
    background: var(--dark);
    color: var(--light);
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 7rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/2000/1000') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(67, 97, 238, 0.15);
    top: -200px;
    right: -100px;
    animation: float-slow 20s infinite alternate ease-in-out;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(247, 37, 133, 0.1);
    bottom: -100px;
    left: -150px;
    animation: float-slow 15s infinite alternate-reverse ease-in-out;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(76, 201, 240, 0.15);
    top: 50%;
    left: 30%;
    animation: float-slow 18s infinite alternate ease-in-out;
}

@keyframes float-slow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(10deg); }
}

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

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 380px;
    height: 380px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 15px;
    z-index: 1;
    opacity: 0.2;
    filter: blur(20px);
    transform: translate(20px, 20px);
}

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

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--accent-2);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s 0.2s both;
}

.hero-subtitle::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.hero-title {
    animation: fadeInUp 1s 0.4s both;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 1s 0.6s both;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.8s both;
}

.hero-cta .btn {
    min-width: 200px;
}

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

/* Problem Section */
.problem {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -400px;
    right: -400px;
    z-index: 0;
}

.problem-container {
    position: relative;
    z-index: 1;
}

.problem-header {
    max-width: 800px;
    margin-bottom: 5rem;
}

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

.problem-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(228, 228, 231, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px -20px rgba(15, 23, 42, 0.2);
    border-color: rgba(67, 97, 238, 0.3);
}

.problem-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent-2));
    top: 0;
    left: 0;
}

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.problem-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-description {
    color: var(--gray);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.problem-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.problem-check i {
    color: var(--primary);
}

/* Insights Section */
.insights {
    background: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.insights::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -300px;
    left: -200px;
    z-index: 0;
}

.insights-container {
    position: relative;
    z-index: 1;
}

.insights-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.insight-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.insight-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.insight-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.insight-action {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-2);
    font-weight: 600;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.insight-action:hover {
    gap: 0.75rem;
}

.insight-action i {
    transition: transform 0.3s ease;
}

.insight-action:hover i {
    transform: translateX(3px);
}

/* Impact Stories Section */
.impact-stories {
    background: var(--light);
    position: relative;
}

.impact-container {
    position: relative;
    z-index: 1;
}

.impact-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.impact-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(228, 228, 231, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.25);
    border-color: rgba(67, 97, 238, 0.3);
}

.impact-img {
    height: 200px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 800;
}

.impact-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.impact-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.impact-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.impact-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.impact-stat {
    flex: 1;
}

.impact-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.impact-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.impact-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.impact-link i {
    transition: transform 0.3s ease;
}

.impact-link:hover {
    gap: 0.75rem;
}

.impact-link:hover i {
    transform: translateX(3px);
}

/* Approach Section */
.approach {
    background: var(--light);
    color: var(--dark, #222);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -400px;
    right: -400px;
    z-index: 0;
}

.approach-container {
    position: relative;
    z-index: 1;
}

.approach-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.pillar-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-2);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-number::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pillar-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.25rem;
}

.pillar-description {
    
    font-size: 0.95rem;
    margin-left: 3.5rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--primary-dark);
    color: var(--light);
    position: relative;
}

.testimonials-container {
    position: relative;
    z-index: 5;
}

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

.testimonials-slider {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    margin: 0 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-quote {
    font-size: 3rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    line-height: 1;
    opacity: 0.2;
    color: var(--light);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
}
/* Testimonial navigation controls */
.testimonial-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--light);
    transform: scale(1.3);
}

.testimonial-arrows {
    display: flex;
    gap: 1rem;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.testimonial-prev:focus,
.testimonial-next:focus {
    outline: none;
}

/* Add transition for testimonial content */
.testimonial-content,
.testimonial-info h4,
.testimonial-info p {
    transition: opacity 0.3s ease;
}

/* CTA Section */
.cta {
    background: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/2000/1000') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(114, 9, 183, 0.2);
    bottom: -100px;
    left: 10%;
}

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-control {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.cta-buttons {
    margin-top: 2.5rem;
}

.cta-form .btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.cta-form .btn-secondary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
}

.cta-form .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.cta-form .btn-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: 1;
}

.cta-form .btn-secondary:hover:before {
    left: 100%;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-guarantee i {
    color: var(--accent);
}

/* Footer */
footer {
    background: var(--darker);
    color: var(--light);
    padding: 6rem 0 2rem;
    position: relative;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--light);
    font-family: var(--font-primary);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.footer-contact-info {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-contact-info strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.25rem;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}


.services-header p, 
.solution-header p, 
.process-header p,
.insights-header p,
.impact-header p,
.approach-header p,
.results-header p, 
.testimonials-header p, 
.faq-header p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 800px;
}