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

:root {
    --green-bright: #0E9B04;
    --green-lime: #3EB805;
    --green-dark: #15680C;
    --black-soft: #072507;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--gray-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--transition-smooth);
}

.nav-bar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-300);
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.nav-logo-name {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--black-soft);
    line-height: 1;
}

.nav-logo-tagline {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--green-bright);
    line-height: 1;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-bright);
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover {
    color: var(--green-bright);
}

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

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--green-bright);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-smooth);
    border: 1px solid var(--green-bright);
}

.nav-cta:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--gray-800);
    transition: all 0.3s var(--transition-smooth);
}

.hero {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 155, 4, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-container > *,
.pain-container > *,
.testimonial-container > *,
.about-container > *,
.closer-container > * {
    min-width: 0;
}

.hero-content {
    animation: fadeInUp 0.8s var(--transition-smooth);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 155, 4, 0.1);
    border: 1px solid rgba(14, 155, 4, 0.2);
    border-radius: 2rem;
    color: var(--green-dark);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge svg {
    color: var(--green-bright);
    animation: spin 4s linear infinite;
}

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

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black-soft);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-social-proof {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    max-width: 500px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars {
    color: #FDB022;
    font-size: 1.25rem;
    letter-spacing: 0.125rem;
}

.proof-text {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

.proof-attribution {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-bright);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(14, 155, 4, 0.2);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 155, 4, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-800);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--green-bright);
    color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-fud {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.fud-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.fud-item svg {
    color: var(--green-bright);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s 0.2s var(--transition-smooth) backwards;
}

.hero-image-placeholder {
    border-radius: var(--radius-xl);
    aspect-ratio: 4/5;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: var(--gray-400);
}

.placeholder-content p {
    font-size: 0.875rem;
    max-width: 200px;
    line-height: 1.5;
}

.floating-stat {
    position: absolute;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    animation: float 3s ease-in-out infinite;
}

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

.stat-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-bright);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.brand-bar {
    padding: 3rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.brand-container {
    max-width: 1400px;
    margin: 0 auto;
}

.brand-intro {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.brand-logo {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-400);
    padding: 1rem;
    transition: all 0.3s var(--transition-smooth);
    opacity: 0.6;
}

.brand-logo:hover {
    color: var(--gray-800);
    opacity: 1;
    transform: scale(1.05);
}

.pain-section {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.pain-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pain-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black-soft);
    margin-bottom: 2rem;
}

.pain-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pain-large {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.6;
}

.pain-body p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

.pain-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.pain-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #DC2626;
    font-size: 1.5rem;
    font-weight: 700;
}

.pain-solve {
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1.125rem;
    padding: 1.5rem;
    background: rgba(14, 155, 4, 0.05);
    border-left: 4px solid var(--green-bright);
    border-radius: var(--radius-sm);
}

.pain-image-placeholder {
    border-radius: var(--radius-xl);
    aspect-ratio: 1;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--gray-200);
}

.testimonial-full {
    padding: 6rem 2rem;
    background: var(--white);
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: min(400px, 42%) 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-image {
    position: relative;
}

.testimonial-image-placeholder {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-xl);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid var(--gray-300);
}

.testimonial-avatar-card {
    background: linear-gradient(160deg, #f0fdf4 0%, var(--white) 60%, #e6f9e3 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(14, 155, 4, 0.15);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 0.75rem;
    text-align: center;
    min-height: 320px;
}

.avatar-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-bright) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(14, 155, 4, 0.12), 0 8px 24px rgba(14, 155, 4, 0.25);
    margin-bottom: 0.5rem;
}

.avatar-initials {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
}

.avatar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(14, 155, 4, 0.1);
    color: var(--green-dark);
    border: 1px solid rgba(14, 155, 4, 0.25);
    border-radius: 2rem;
    padding: 0.25rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.avatar-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black-soft);
    margin: 0;
    letter-spacing: -0.01em;
}

.avatar-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    margin: 0;
}

.avatar-company {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--green-dark);
    margin: 0;
    opacity: 0.85;
}

.quote-mark {
    font-size: 6rem;
    font-weight: 800;
    color: var(--green-bright);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -2rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-results {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-dark);
    font-weight: 600;
}

.result-item svg {
    color: var(--green-bright);
}

.testimonial-attribution {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.testimonial-attribution strong {
    font-size: 1.125rem;
    color: var(--black-soft);
}

.testimonial-future {
    color: var(--gray-600);
    font-size: 1rem;
    font-style: italic;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.services {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black-soft);
    margin-bottom: 1.5rem;
}

.section-subheadline {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-bright), var(--green-lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-bright);
}

.service-large {
    grid-column: span 2;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(14, 155, 4, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--green-bright);
    transition: all 0.3s var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--green-bright);
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--black-soft);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.framework-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--black-soft) 0%, #0a3a08 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.framework-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    pointer-events: none;
}

.framework-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.framework-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 1.5rem;
}

.framework-subheadline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.framework-pillars {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.pillar {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--transition-smooth);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--green-bright);
    transform: translateY(-4px);
}

.pillar-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-bright);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1rem;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.pillar-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.pillar-connector {
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
}

.lifecycle-stages {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.lifecycle-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 600;
}

.stages-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stage {
    padding: 1rem 2rem;
    background: rgba(14, 155, 4, 0.2);
    border: 1px solid var(--green-bright);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s var(--transition-smooth);
}

.stage:hover {
    background: var(--green-bright);
    transform: scale(1.05);
}

.stage-arrow {
    color: var(--green-bright);
    font-size: 1.5rem;
    font-weight: 700;
}

.about-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: min(450px, 42%) 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    border-radius: var(--radius-xl);
    aspect-ratio: 3/4;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border: 1px solid var(--gray-300);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -0.75rem;
    background: var(--green-bright);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.badge-content {
    text-align: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0.25rem;
}

.about-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-bright);
    margin-bottom: 1rem;
}

.about-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black-soft);
    margin-bottom: 2rem;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-intro {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-weight: 500;
}

.experience-highlight {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--green-bright);
}

.experience-highlight h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black-soft);
    margin-bottom: 0.75rem;
}

.experience-highlight p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.about-cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-headline {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--black-soft);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.team-subtext {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.team-gif-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
    display: inline-block;
    width: 100%;
}

.team-gif {
    width: 100%;
    display: block;
    object-fit: cover;
}

.additional-services {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

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

.additional-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black-soft);
    text-align: center;
    margin-bottom: 3rem;
}

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

.additional-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--transition-smooth);
}

.additional-card:hover {
    border-color: var(--green-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.additional-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black-soft);
    margin-bottom: 0.75rem;
}

.additional-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black-soft);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--green-bright);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black-soft);
    transition: all 0.3s var(--transition-smooth);
}

.faq-question:hover {
    color: var(--green-bright);
}

.faq-icon {
    color: var(--green-bright);
    transition: transform 0.3s var(--transition-smooth);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.closer-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow-x: hidden;
}

.closer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.closer-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black-soft);
    margin-bottom: 1.5rem;
}

.closer-subheadline {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.closer-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
}

.benefit-item svg {
    color: var(--green-bright);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.closer-content {
    min-width: 0;
}

.closer-form {
    position: relative;
    min-width: 0;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s var(--transition-smooth);
    max-width: 100%;
    width: 100%;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--gray-800);
    transition: all 0.3s var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-bright);
    box-shadow: 0 0 0 3px rgba(14, 155, 4, 0.1);
}

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

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--green-bright);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black-soft);
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.closer-trust {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(14, 155, 4, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 155, 4, 0.2);
}

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

.trust-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.trust-author {
    color: var(--gray-600);
    font-size: 1rem;
}

.footer {
    background: var(--black-soft);
    color: rgba(255, 255, 255, 0.8);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* CTA Band */
.footer-cta-band {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-bright) 100%);
    padding: 2.25rem 2rem;
}

.footer-cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-cta-label {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-cta-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.footer-cta-btn:hover {
    background: var(--black-soft);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Body */
.footer-body {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-lockup {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-logo-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--white);
    line-height: 1;
}

.footer-logo-tagline {
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--green-lime);
    line-height: 1;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--green-bright);
    border-color: var(--green-bright);
    color: var(--white);
    transform: translateY(-2px);
}

/* Link Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col-heading {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green-lime);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col-list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col-list a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-bright);
    opacity: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.footer-col-list a:hover {
    color: var(--white);
}

.footer-col-list a:hover::before {
    opacity: 1;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: var(--green-lime);
}

.fc-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(62, 184, 5, 0.15);
    border: 1px solid rgba(62, 184, 5, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-lime);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Bottom Bar */
.footer-bottom-bar {
    padding: 1.25rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-right {
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1024px) {
    .hero-container,
    .pain-container,
    .testimonial-container,
    .about-container,
    .closer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .service-large {
        grid-column: span 1;
    }

    .framework-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pillar-connector {
        display: none;
    }

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

    .closer-container {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        z-index: 99;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        padding: 2rem;
    }

    .nav-links.active .nav-link {
        font-size: 1.375rem;
        font-weight: 600;
    }

    .nav-links.active .nav-cta {
        font-size: 1.125rem;
        padding: 0.875rem 2.5rem;
        width: auto;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 101;
    }

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

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-stat {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
    }

    .stat-1, .stat-2 {
        animation: none;
    }

    .hero-fud {
        flex-direction: column;
        gap: 0.75rem;
    }

    .brand-bar {
        padding: 2rem 1.5rem;
    }

    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-section,
    .testimonial-full,
    .services,
    .framework-section,
    .about-section,
    .additional-services,
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .closer-section {
        padding: 4rem 1.5rem 2.5rem;
    }

    .closer-container {
        margin-bottom: 1rem;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .closer-trust {
        padding: 1.75rem;
    }

    .closer-subheadline {
        margin-bottom: 1.5rem;
    }

    .closer-benefits {
        gap: 1rem;
    }

    .testimonial-results {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services-grid,
    .additional-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .stages-flow {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stage-arrow {
        transform: rotate(90deg);
    }

    .about-badge {
        width: 90px;
        height: 90px;
        right: 0.5rem;
        bottom: 0.5rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 1.25rem;
    }

    .section-headline,
    .hero-headline,
    .pain-headline,
    .framework-headline,
    .about-headline,
    .additional-headline,
    .faq-headline,
    .closer-headline {
        font-size: 1.875rem;
    }

    .hero {
        padding: 6rem 1.25rem 3rem;
    }

    .pain-section,
    .testimonial-full,
    .services,
    .framework-section,
    .about-section,
    .additional-services,
    .faq-section {
        padding: 3rem 1.25rem;
    }

    .closer-section {
        padding: 3rem 1.25rem 2rem;
    }

    .closer-container {
        margin-bottom: 0.75rem;
        gap: 1.5rem;
    }

    .service-card,
    .additional-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .closer-trust {
        padding: 1.25rem;
    }

    .lifecycle-stages {
        padding: 2rem 1.25rem;
    }

    .hero-image-placeholder {
        aspect-ratio: 4/3;
    }

    .pain-image-placeholder {
        aspect-ratio: 4/3;
    }
}
