/* =====================================================
   Newfoundland Sales Solutions
   Fresh Light Theme - Emerald Green & Ocean Blue
   ===================================================== */

/* --------------------- CSS Variables --------------------- */
:root {
    /* Brand Colors */
    --emerald: #10b981;
    --emerald-dark: #059669;
    --emerald-light: #34d399;
    --ocean: #0ea5e9;
    --ocean-dark: #0284c7;
    --ocean-light: #38bdf8;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f9fafb;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Sora', var(--font-primary);

    /* Spacing */
    --section-padding: 110px 0;
    --container-max: 1220px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.1);
    --shadow-emerald: 0 12px 40px rgba(16, 185, 129, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul { list-style: none; }

button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

button { cursor: pointer; background: none; }

/* --------------------- Utility --------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--emerald);
    margin-bottom: 20px;
}

.section-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-copy {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 550px;
}

.section-top {
    text-align: center;
    margin-bottom: 60px;
}

.section-top .section-copy {
    margin: 0 auto;
}

/* --------------------- Buttons --------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-emerald);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(16, 185, 129, 0.35);
}

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

.btn-secondary:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.btn-white {
    background: var(--white);
    color: var(--emerald);
    border: none;
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
}

.btn-big {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* --------------------- Header --------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 14px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-symbol {
    width: 40px;
    height: 40px;
    color: var(--emerald);
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-name span {
    color: var(--emerald);
}

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

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--ocean));
    transition: all var(--transition-base);
    border-radius: 3px;
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gray-900);
}

.nav-action {
    padding: 12px 24px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.burger span {
    width: 26px;
    height: 3px;
    background: var(--gray-800);
    transition: all var(--transition-base);
    border-radius: 3px;
}

/* --------------------- Hero Section - Card Stack Design --------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 25%, #f0f9ff 50%, #faf5ff 75%, #fdf4ff 100%);
}

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

.bg-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.15);
    top: -150px;
    left: -100px;
    animation: blobFloat 20s ease-in-out infinite;
}

.bg-blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.12);
    bottom: -100px;
    right: -50px;
    animation: blobFloat 15s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(16, 185, 129, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.hero-text-block {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.pill-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--emerald), var(--ocean));
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--emerald), var(--ocean));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cards {
    position: relative;
    height: 550px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-card-1 {
    width: 280px;
    height: 200px;
    top: 0;
    right: 60px;
    z-index: 3;
    animation: cardFloat1 6s ease-in-out infinite;
}

.stack-card-2 {
    width: 320px;
    height: 240px;
    top: 140px;
    left: 0;
    z-index: 2;
    animation: cardFloat2 7s ease-in-out infinite;
}

.stack-card-3 {
    width: 260px;
    height: 180px;
    bottom: 40px;
    right: 20px;
    z-index: 1;
    animation: cardFloat3 5s ease-in-out infinite;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(-4deg); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(4deg); }
}

.hero-stat-cards {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.stat-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: auto;
    transition: transform 0.3s ease;
}

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

.stat-card-1 {
    top: 60px;
    left: 30px;
    animation: statFloat 4s ease-in-out infinite;
}

.stat-card-2 {
    bottom: 120px;
    left: 60%;
    animation: statFloat 5s ease-in-out infinite 0.5s;
}

.stat-card-3 {
    top: 50%;
    right: 0;
    animation: statFloat 4.5s ease-in-out infinite 1s;
}

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

.stat-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
}

.stat-card-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1.1;
}

.stat-card-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* --------------------- About Section --------------------- */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.9;
    margin-bottom: 40px;
}

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

.about-stat {
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.about-stat:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--emerald), var(--ocean));
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.stat-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* --------------------- Solutions Section --------------------- */
.solutions {
    background: var(--gray-50);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    position: relative;
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--ocean));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card.featured {
    border-color: var(--emerald);
}

.solution-card.featured::before {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-top {
    margin-bottom: 24px;
}

.card-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.solution-card:hover .card-icon-wrap {
    background: linear-gradient(135deg, var(--emerald), var(--ocean));
}

.card-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--emerald);
    transition: stroke var(--transition-base);
}

.solution-card:hover .card-icon-wrap svg {
    stroke: var(--white);
}

.card-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.card-copy {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-list {
    margin-bottom: 24px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    flex-shrink: 0;
}

.card-action {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--emerald);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.card-action:hover {
    gap: 12px;
}

.card-action::after {
    content: '\2192';
}

/* --------------------- Why Us Section --------------------- */
.why-us {
    background: var(--white);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-copy {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.9;
    margin-bottom: 40px;
}

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

.benefit {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.benefit:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
}

.benefit-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.visual-testimonial {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    padding: 50px;
    border-radius: var(--radius-xl);
    color: var(--white);
}

.testimonial-quote {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.author-avatar {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* --------------------- CTA Banner --------------------- */
.cta-banner {
    background: linear-gradient(135deg, var(--emerald), var(--ocean));
    padding: 80px 0;
}

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

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.banner-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------- Contact Section --------------------- */
.contact {
    background: var(--gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-copy {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method {
    display: flex;
    gap: 16px;
}

.method-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--emerald);
}

.method-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.method-details p,
.method-details a {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.method-details a:hover {
    color: var(--emerald);
}

.contact-form-box {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-input-group input,
.form-input-group textarea {
    padding: 16px 20px;
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    transition: all var(--transition-fast);
}

.form-input-group input:focus,
.form-input-group textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-input-group input::placeholder,
.form-input-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

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

.success-check {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-check svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-500);
}

/* --------------------- Footer --------------------- */
.footer {
    background: var(--gray-900);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about {
    max-width: 280px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-symbol {
    color: var(--emerald);
}

.footer-about .logo-name {
    color: var(--white);
}

.footer-about .logo-name span {
    color: var(--emerald);
}

.footer-about p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-nav-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-col li,
.footer-nav-col a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer-nav-col a:hover {
    color: var(--emerald);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: 28px;
}

.footer-legal-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

/* --------------------- Animations --------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------- Responsive --------------------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-cards {
        height: 450px;
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .stack-card-1 {
        width: 220px;
        height: 160px;
        right: 20px;
    }

    .stack-card-2 {
        width: 260px;
        height: 200px;
        top: 100px;
    }

    .stack-card-3 {
        width: 200px;
        height: 140px;
    }

    .stat-card-2 {
        left: 50%;
    }

    .stat-card-3 {
        display: none;
    }

    .hero-text-block {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .why-us-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .visual-testimonial {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-items,
    .nav-action {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-base);
    }

    .nav.active {
        right: 0;
    }

    .nav-items {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-action {
        display: flex;
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-cards {
        height: 380px;
    }

    .stack-card-1 {
        width: 180px;
        height: 130px;
        top: 10px;
        right: 10px;
    }

    .stack-card-2 {
        width: 220px;
        height: 160px;
        top: 80px;
        left: 10px;
    }

    .stack-card-3 {
        width: 180px;
        height: 120px;
        bottom: 20px;
        right: 30px;
    }

    .stat-card {
        padding: 12px 16px;
    }

    .stat-card-icon {
        width: 36px;
        height: 36px;
    }

    .stat-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .stat-card-value {
        font-size: 1.1rem;
    }

    .stat-card-1 {
        top: 40px;
        left: 10px;
    }

    .stat-card-2 {
        bottom: 80px;
        left: auto;
        right: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-2col {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 30px;
    }

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

    .footer-about {
        max-width: none;
    }

    .footer-about .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .solution-card {
        padding: 28px 20px;
    }

    .benefit {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .benefit-check {
        margin: 0 auto;
    }

    .visual-testimonial {
        padding: 35px 25px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }
}
