/* ===========================
   Kanoo Software — Styles
   Premium warm color palette
   =========================== */

/* --- CSS Custom Properties --- */
:root {
    /* Warm palette */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;

    --terracotta-50: #fdf2f0;
    --terracotta-100: #fce4df;
    --terracotta-200: #f9c5ba;
    --terracotta-300: #f4a08f;
    --terracotta-400: #ec7a63;
    --terracotta-500: #e05a3a;
    --terracotta-600: #c4432b;
    --terracotta-700: #a43524;
    --terracotta-800: #872e22;
    --terracotta-900: #6f2a22;

    --sand-50: #faf8f5;
    --sand-100: #f5f0e8;
    --sand-200: #ede4d4;
    --sand-300: #e0d2b8;
    --sand-400: #d1bb96;
    --sand-500: #c4a67a;
    --sand-600: #b08d5e;
    --sand-700: #93744e;
    --sand-800: #7a6044;
    --sand-900: #655039;

    --warm-gray-50: #fafaf8;
    --warm-gray-100: #f5f4f0;
    --warm-gray-200: #e8e6e0;
    --warm-gray-300: #d6d3ca;
    --warm-gray-400: #b8b4a8;
    --warm-gray-500: #9a9588;
    --warm-gray-600: #7c786c;
    --warm-gray-700: #65625a;
    --warm-gray-800: #4a4842;
    --warm-gray-900: #2d2c28;
    --warm-gray-950: #1a1917;

    /* Semantic */
    --bg-primary: #fdfbf7;
    --bg-secondary: #f8f5ee;
    --bg-dark: #1a1917;
    --text-primary: #2d2c28;
    --text-secondary: #65625a;
    --text-muted: #9a9588;
    --accent-primary: #e05a3a;
    --accent-secondary: #f59e0b;
    --accent-glow: rgba(224, 90, 58, 0.15);

    /* Gradient */
    --gradient-warm: linear-gradient(135deg, #e05a3a 0%, #f59e0b 100%);
    --gradient-warm-soft: linear-gradient(135deg, rgba(224, 90, 58, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
    --gradient-hero: linear-gradient(160deg, #fdfbf7 0%, #fef3c7 30%, #fce4df 70%, #fdfbf7 100%);

    /* Spacing */
    --section-padding: 120px;

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 44, 40, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 44, 40, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 44, 40, 0.12);
    --shadow-xl: 0 16px 64px rgba(45, 44, 40, 0.16);
    --shadow-glow: 0 0 40px rgba(224, 90, 58, 0.2);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* --- Text Gradient --- */
.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--gradient-warm-soft);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-warm);
    color: #fff;
    box-shadow: 0 4px 16px rgba(224, 90, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(224, 90, 58, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--warm-gray-200);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--accent-glow);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

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

.btn.success {
    background: #22c55e;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================
   NAVBAR
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 44, 40, 0.06);
}

.navbar.hidden {
    transform: translateY(-100%);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 10;
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-primary);
}

.logo-accent {
    color: var(--accent-primary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(45, 44, 40, 0.04);
}

.nav-link.nav-cta {
    background: var(--gradient-warm);
    color: #fff;
    margin-left: 8px;
}

.nav-link.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 90, 58, 0.3);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: all var(--transition-base);
}

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

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

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


/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    transition: transform 0.3s ease-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 90, 58, 0.12) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 166, 122, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-primary);
    background: rgba(224, 90, 58, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(224, 90, 58, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-plus {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--warm-gray-200);
}

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    position: relative;
    perspective: 1000px;
}

.mockup-window {
    width: 480px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--warm-gray-200);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-mockup:hover .mockup-window {
    transform: rotateY(-2deg) rotateX(1deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--warm-gray-50);
    border-bottom: 1px solid var(--warm-gray-200);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff6b6b; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-url {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--warm-gray-100);
    padding: 4px 12px;
    border-radius: 6px;
    flex: 1;
    text-align: center;
}

.mockup-body {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 60px;
    background: var(--warm-gray-50);
    border-right: 1px solid var(--warm-gray-200);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-sidebar-item {
    width: 100%;
    height: 36px;
    background: var(--warm-gray-200);
    border-radius: 8px;
    transition: all var(--transition-base);
}

.mockup-sidebar-item.active {
    background: var(--gradient-warm);
}

.mockup-content {
    flex: 1;
    padding: 20px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--warm-gray-100);
    margin-bottom: 16px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient-warm);
    border-radius: 6px 6px 0 0;
    opacity: 0.7;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-mockup.animate .chart-bar {
    transform: scaleY(1);
}

.chart-bar:nth-child(1) { transition-delay: 0.1s; }
.chart-bar:nth-child(2) { transition-delay: 0.2s; }
.chart-bar:nth-child(3) { transition-delay: 0.3s; }
.chart-bar:nth-child(4) { transition-delay: 0.4s; }
.chart-bar:nth-child(5) { transition-delay: 0.5s; }
.chart-bar:nth-child(6) { transition-delay: 0.6s; }
.chart-bar:nth-child(7) { transition-delay: 0.7s; }

.mockup-cards {
    display: flex;
    gap: 10px;
}

.mockup-card {
    flex: 1;
    height: 60px;
    background: var(--warm-gray-100);
    border-radius: 8px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    transition: transform 0.3s ease-out;
}

.floating-icon {
    font-size: 1.2rem;
}

.floating-card-1 {
    top: 20px;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 80px;
    left: -40px;
    animation: float 6s ease-in-out infinite 1s;
}

.floating-card-3 {
    bottom: 20px;
    right: -20px;
    animation: float 6s ease-in-out infinite 2s;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--warm-gray-300);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}


/* =====================
   SERVICES
   ===================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--warm-gray-200), transparent);
}

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

.service-card {
    background: var(--bg-primary);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm-soft);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--warm-gray-100);
    padding: 4px 12px;
    border-radius: 100px;
}


/* =====================
   ABOUT
   ===================== */
.about {
    padding: var(--section-padding) 0;
}

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

.about-content .section-tag {
    display: inline-block;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--text-primary);
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm-soft);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    min-height: 420px;
}

.about-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--amber-300) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.4;
    border-radius: var(--radius-lg);
}

.about-card-stack {
    position: relative;
    padding-top: 30px;
}

.about-stack-card {
    background: var(--bg-primary);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.about-stack-card + .about-stack-card {
    margin-top: 16px;
}

.about-stack-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.stack-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 12px;
}

.stack-card-icon {
    font-size: 1.3rem;
}

.stack-card-metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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


/* =====================
   SOLUTIONS
   ===================== */
.solutions {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 90, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.solutions .section-tag {
    color: var(--amber-400);
    background: rgba(245, 158, 11, 0.1);
}

.solutions .section-title {
    color: #fff;
}

.solutions .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.solutions-grid {
    display: grid;
    gap: 2px;
}

.solution-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 32px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.solution-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(224, 90, 58, 0.3);
    border-radius: 50%;
}

.solution-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.solution-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.solution-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.solution-item:hover .solution-arrow {
    background: var(--accent-primary);
    color: #fff;
    transform: rotate(0deg);
}

.solution-item:hover .solution-number {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}


/* =====================
   PROCESS
   ===================== */
.process {
    padding: var(--section-padding) 0;
}

.process-timeline {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--amber-200), var(--terracotta-300));
}

.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-marker {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm);
    color: #fff;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 6px var(--bg-primary), var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    padding-top: 4px;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--bg-primary);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-gray-200);
    transition: all var(--transition-base);
}

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

.testimonial-stars {
    color: var(--amber-400);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}


/* =====================
   CTA
   ===================== */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: var(--gradient-warm);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-card .btn-primary {
    background: #fff;
    color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.cta-card .btn-primary:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}


/* =====================
   CONTACT
   ===================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm-soft);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-gray-200);
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 14px 16px;
    border: 1.5px solid var(--warm-gray-200);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

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


/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 32px;
}

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

.footer-brand .nav-logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-group h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links-group a:hover {
    color: var(--amber-400);
}

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

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

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

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-2px);
}


/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

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

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

    .hero-visual {
        display: none;
    }

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

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

    .about-content .section-title {
        text-align: center;
    }

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

    .about-values {
        align-items: center;
    }

    .value-item {
        max-width: 400px;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-primary);
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--transition-base);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1.05rem;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .solution-item {
        grid-template-columns: auto 1fr;
        padding: 24px 16px;
    }

    .solution-arrow {
        display: none;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .process-step {
        gap: 20px;
    }

    .step-marker {
        width: 42px;
        height: 42px;
    }

    .timeline-line {
        left: 20px;
    }
}
