/* ═══════════════════════════════════════════════════════
   TUNKA TECH — Feuille de styles principale
   Palette : rouge #B22222 · sombre #0F1923 · blanc #FFFFFF
   ═══════════════════════════════════════════════════════ */

:root {
    --red:        #B22222;
    --red-dark:   #8B0000;
    --red-light:  #FEF2F2;
    --dark:       #0F1923;
    --dark-2:     #182535;
    --surface:    #FFFFFF;
    --bg:         #F7F9FC;
    --border:     #E8EDF4;
    --text:       #1E293B;
    --muted:      #64748B;
    --accent:     #1D4ED8;
    --accent-l:   #EFF6FF;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 4px rgba(15,25,35,.07);
    --shadow-md: 0 4px 16px rgba(15,25,35,.10);
    --shadow-lg: 0 12px 40px rgba(15,25,35,.14);
    --transition: .22s ease;
    --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--surface); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── Container ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15,25,35,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: box-shadow var(--transition);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
    width: 36px; height: 36px; background: var(--red); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px; color: #fff; flex-shrink: 0;
}
.nav-logo-text { font-weight: 800; font-size: 17px; color: #fff; }
.nav-logo-sub  { font-size: 9px; color: rgba(255,255,255,.4); letter-spacing: .8px; text-transform: uppercase; }

/* Links row */
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
    color: rgba(255,255,255,.72); font-size: 14px; font-weight: 500;
    padding: 8px 14px; border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 5px;
    transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.nav-active { color: #fff; background: rgba(255,255,255,.08); }
.nav-arrow { font-size: 10px; opacity: .6; transition: transform var(--transition); }
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }

.nav-cta { background: var(--red) !important; color: #fff !important; padding: 8px 18px !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* Dropdown */
.dropdown {
    position: absolute; top: calc(100% + 6px); left: 0;
    background: var(--dark-2); border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius-md); padding: 6px; min-width: 210px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    list-style: none; box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; border-radius: var(--radius-sm);
    font-size: 13px; color: rgba(255,255,255,.68);
    transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover { background: rgba(255,255,255,.07); color: #fff; }
.dropdown li a i { width: 14px; text-align: center; color: var(--red); font-size: 12px; }
.dropdown-divider { border-top: 1px solid rgba(255,255,255,.07); margin: 5px 0; }

/* Burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span {
    display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8);
    border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh; background: var(--dark);
    display: flex; align-items: center;
    padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(178,34,34,.14) 0%, transparent 60%),
                radial-gradient(ellipse 45% 40% at 15% 80%, rgba(29,78,216,.09) 0%, transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(178,34,34,.18); border: 1px solid rgba(178,34,34,.3);
    color: #FCA5A5; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px; margin-bottom: 20px;
}
.hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; color: #fff; margin-bottom: 18px; }
.hero-title span { color: var(--red); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 32px; max-width: 460px; }

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
    background: var(--red); color: #fff; font-weight: 700; font-size: 15px;
    padding: 13px 26px; border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-hero-outline {
    background: transparent; color: rgba(255,255,255,.78); font-weight: 600; font-size: 15px;
    padding: 13px 26px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.22);
    transition: border-color var(--transition), color var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

.hero-metrics { display: flex; gap: 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.metric-val { font-size: 22px; font-weight: 900; color: #fff; }
.metric-lbl { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* Hero code terminal */
.hero-visual {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-lg); padding: 22px; font-family: var(--font-mono); overflow: hidden;
}
.hero-visual-bar { display: flex; gap: 6px; margin-bottom: 16px; align-items: center; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-dot.r { background: #FF5F57; } .hero-dot.y { background: #FFBD2E; } .hero-dot.g { background: #28CA41; }
.hero-visual-title { font-size: 11px; color: rgba(255,255,255,.3); flex: 1; text-align: center; }
.code-block { font-size: 12.5px; line-height: 1.85; }
.code-comment { color: #4B7A5A; } .code-method { color: #61DAFB; }
.code-url { color: #CE9178; } .code-key { color: #9CDCFE; }
.code-val { color: #98C379; } .code-brace { color: rgba(255,255,255,.55); }
.code-success { color: #4EC9B0; } .code-num { color: #B5CEA8; }

/* ═══════════════════════════════════════════════════════
   PILIERS
   ═══════════════════════════════════════════════════════ */
.pillars { padding: 72px 0; background: var(--bg); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 32px 28px; text-align: center; box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--red); }
.pillar-img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }
.pillar-icon { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.pillar-icon.red   { background: var(--red-light); color: var(--red); }
.pillar-icon.blue  { background: var(--accent-l); color: var(--accent); }
.pillar-icon.green { background: #ECFDF5; color: #059669; }
.pillar-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.pillar-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   SECTIONS COMMUNES
   ═══════════════════════════════════════════════════════ */
.section { padding: 88px 0; }
.section-dark { background: var(--dark); }
.section-bg   { background: var(--bg); }

.section-tag {
    display: inline-block; background: var(--red-light); color: var(--red);
    font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.section-tag-dark {
    display: inline-block; background: rgba(178,34,34,.15); color: #FCA5A5;
    font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; border: 1px solid rgba(178,34,34,.25);
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; line-height: 1.2; margin-bottom: 14px; }
.section-title-light { color: #fff; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 580px; }
.section-sub-light { color: rgba(255,255,255,.52); }
.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 28px 24px; box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--red); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.service-icon.red   { background: var(--red-light); color: var(--red); }
.service-icon.blue  { background: var(--accent-l); color: var(--accent); }
.service-icon.green { background: #ECFDF5; color: #059669; }
.service-icon.amber { background: #FEF3C7; color: #B45309; }
.service-icon.purple{ background: #F5F3FF; color: #7C3AED; }
.service-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.service-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--red); transition: gap var(--transition); }
.service-link:hover { gap: 8px; }
.service-features { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.service-features li i { color: var(--red); font-size: 11px; width: 12px; }

/* ═══════════════════════════════════════════════════════
   SMS API SPOTLIGHT
   ═══════════════════════════════════════════════════════ */
.sms-spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-list  { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.feature-item  { display: flex; align-items: flex-start; gap: 12px; }
.feature-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(178,34,34,.15); color: #FCA5A5; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.feature-text  { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.55; }
.feature-text strong { color: #fff; }
.sms-cta-bar   { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-sms-primary { background: var(--red); color: #fff; font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: var(--radius-sm); transition: background var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.btn-sms-primary:hover { background: var(--red-dark); }
.btn-sms-outline { background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); font-weight: 600; font-size: 14px; padding: 11px 22px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.15); transition: border-color var(--transition), background var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.btn-sms-outline:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.10); }

/* Code panel */
.code-panel { background: #0D1B2A; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-md); overflow: hidden; }
.code-panel-header { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07); }
.code-panel-dots { display: flex; gap: 5px; }
.code-panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-panel-dot.r { background: #FF5F57; } .code-panel-dot.y { background: #FFBD2E; } .code-panel-dot.g { background: #28CA41; }
.code-panel-label { font-size: 11px; color: rgba(255,255,255,.28); font-family: var(--font-mono); }
.code-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,.07); }
.code-tab { padding: 8px 16px; font-size: 12px; font-family: var(--font-mono); color: rgba(255,255,255,.38); cursor: pointer; border-bottom: 2px solid transparent; transition: color var(--transition); }
.code-tab.active { color: var(--red); border-bottom-color: var(--red); }
.code-panel pre { padding: 20px; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.9; overflow-x: auto; }
.hl-cmd  { color: #61DAFB; } .hl-flag { color: #9CDCFE; } .hl-url  { color: #CE9178; }
.hl-key  { color: #4EC9B0; } .hl-val  { color: #98C379; } .hl-str  { color: #CE9178; }
.hl-cmt  { color: #4B7A5A; } .hl-resp { color: #C586C0; }
.env-summary { margin-top: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-md); padding: 18px 20px; }
.env-summary-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.3); margin-bottom: 12px; font-family: var(--font); }
.env-pill-row { display: flex; flex-direction: column; gap: 8px; }
.env-pill { display: flex; align-items: center; gap: 10px; }
.env-pill-badge { font-size: 10px; font-weight: 800; padding: 2px 9px; border-radius: 10px; }
.env-pill-badge.sandbox { background: #FEF3C7; color: #B45309; }
.env-pill-badge.live    { background: #DCFCE7; color: #15803D; }
.env-pill-url { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════
   TAAMA
   ═══════════════════════════════════════════════════════ */
.taama-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.taama-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.taama-module { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; }
.taama-module i { color: var(--red); margin-top: 2px; font-size: 14px; }
.taama-module-name { font-size: 13px; font-weight: 700; color: #fff; }
.taama-module-desc { font-size: 11.5px; color: rgba(255,255,255,.4); margin-top: 2px; }
.taama-visual { background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 28px; }
.taama-map-placeholder { background: rgba(255,255,255,.04); border-radius: var(--radius-md); height: 240px; display: flex; align-items: center; justify-content: center; border: 1px dashed rgba(255,255,255,.12); color: rgba(255,255,255,.22); font-size: 13px; flex-direction: column; gap: 8px; }
.taama-stat-row { display: flex; gap: 14px; margin-top: 18px; }
.taama-stat { flex: 1; background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: 12px 14px; border: 1px solid rgba(255,255,255,.07); }
.taama-stat-val { font-size: 20px; font-weight: 800; color: #fff; }
.taama-stat-lbl { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.testimonial-stars { display: flex; gap: 3px; color: #FBBF24; font-size: 13px; margin-bottom: 14px; }
.testimonial-text  { font-size: 14px; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   RÉALISATIONS / PORTFOLIO
   ═══════════════════════════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.projects-grid .project-card:last-child:nth-child(3n-1) { grid-column-end: -1; }
.projects-grid .project-card:last-child:nth-child(3n+1) { grid-column: 2; }
.project-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.project-thumb { height: 120px; background: var(--bg); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); padding: 16px; }
.project-thumb img { max-height: 80px; max-width: 100%; object-fit: contain; }
.project-thumb-placeholder { width: 52px; height: 52px; border-radius: 12px; background: var(--red-light); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 22px; }
.project-body { padding: 16px; }
.project-name { font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.project-type { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.project-badge { font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 20px; white-space: nowrap; }
.project-badge.mobile  { background: #DBEAFE; color: #1D4ED8; }
.project-badge.app     { background: #F3E8FF; color: #7C3AED; }
.project-badge.web     { background: #DCFCE7; color: #15803D; }
.project-badge.desktop { background: #FEF9C3; color: #A16207; }

/* ═══════════════════════════════════════════════════════
   PARTENAIRES
   ═══════════════════════════════════════════════════════ */
.partners-section { padding: 60px 0; background: var(--bg); border-top: 1px solid var(--border); }
.partners-label { text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 28px; }
.partners-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px; }
.partner-item { display: flex; align-items: center; gap: 10px; opacity: .65; transition: opacity var(--transition); }
.partner-item:hover { opacity: 1; }
.partner-item img { height: 36px; object-fit: contain; }
.partner-item span { font-size: 15px; font-weight: 800; color: var(--text); }

/* ═══════════════════════════════════════════════════════
   À PROPOS (page)
   ═══════════════════════════════════════════════════════ */
.page-hero { padding: 140px 0 72px; background: var(--dark); color: #fff; }
.page-hero-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero-sub    { font-size: 16px; color: rgba(255,255,255,.55); max-width: 500px; }
.page-content     { padding: 80px 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-value { background: var(--bg); border-radius: var(--radius-sm); padding: 18px; border: 1px solid var(--border); }
.about-value i { color: var(--red); font-size: 20px; margin-bottom: 8px; }
.about-value h4 { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.about-value p  { font-size: 13px; color: var(--muted); }
.about-visual { background: var(--dark); border-radius: var(--radius-xl); padding: 40px 36px; color: #fff; position: relative; overflow: hidden; }
.about-visual::before { content: ''; position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(178,34,34,.22), transparent 70%); }
.about-visual-title { font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.about-visual-sub   { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.7; }
.about-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.about-tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { text-align: center; }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; margin: 0 auto 14px; }
.team-name  { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.team-role  { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   SERVICES (page)
   ═══════════════════════════════════════════════════════ */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail.reversed .service-detail-text { order: 2; }
.service-detail.reversed .service-detail-visual { order: 1; }
.service-detail-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; }
.service-detail-desc  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.service-detail-visual { background: var(--bg); border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 220px; border: 1px solid var(--border); }
.service-detail-visual i { font-size: 72px; color: var(--red); opacity: .7; }

/* ═══════════════════════════════════════════════════════
   CONTACT (page)
   ═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-icon { width: 42px; height: 42px; background: var(--red-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 16px; flex-shrink: 0; }
.contact-info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); margin-bottom: 3px; }
.contact-info-value { font-size: 15px; font-weight: 600; }
.contact-social { display: flex; gap: 10px; margin-top: 28px; }
.contact-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--muted); transition: background var(--transition), color var(--transition), border-color var(--transition); }
.contact-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }

.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 7px; }
.contact-form input,
.contact-form textarea,
.contact-form select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font); font-size: 14px; background: var(--surface); color: var(--text); transition: border-color var(--transition); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--red); }
.contact-form textarea { height: 130px; resize: vertical; }
.btn-submit { background: var(--red); color: #fff; font-weight: 700; font-size: 15px; padding: 13px 28px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 8px; transition: background var(--transition); }
.btn-submit:hover { background: var(--red-dark); }

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; }
.pricing-card.featured { background: var(--dark); border-color: var(--red); box-shadow: 0 0 0 1px var(--red), var(--shadow-lg); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.pricing-name  { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 8px; }
.pricing-price { font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.pricing-card.featured .pricing-name  { color: rgba(255,255,255,.5); }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-sub   { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.pricing-card.featured .pricing-sub { color: rgba(255,255,255,.4); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.pricing-feature { display: flex; align-items: center; gap: 9px; font-size: 13.5px; }
.pricing-feature i { color: var(--red); width: 14px; }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.78); }
.btn-pricing { width: 100%; padding: 11px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background var(--transition); }
.btn-pricing-outline { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.btn-pricing-outline:hover { background: var(--border); }
.btn-pricing-fill   { background: var(--red); color: #fff; border: none; }
.btn-pricing-fill:hover { background: var(--red-dark); }

/* ═══════════════════════════════════════════════════════
   CONTACT BAND + FOOTER
   ═══════════════════════════════════════════════════════ */
.contact-band { background: var(--red); padding: 72px 0; text-align: center; }
.contact-band h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.contact-band p  { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.contact-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-contact-white { background: #fff; color: var(--red); font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 8px; transition: background var(--transition); }
.btn-contact-white:hover { background: #f0f0f0; }
.btn-contact-outline-w { background: transparent; color: #fff; font-weight: 600; font-size: 15px; padding: 13px 26px; border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,.45); display: inline-flex; align-items: center; gap: 8px; transition: border-color var(--transition); }
.btn-contact-outline-w:hover { border-color: #fff; }

.footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 60px 0 32px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--red); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: #fff; }
.footer-brand-name { font-size: 17px; font-weight: 800; color: #fff; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--red); color: #fff; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.82); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.42); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-text { font-size: 12px; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .hero-grid, .sms-spotlight, .taama-grid, .contact-grid, .about-grid, .service-detail { grid-template-columns: 1fr; }
    .hero-visual   { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid  { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pillars-grid  { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    .taama-modules { grid-template-columns: 1fr; }
    .team-grid     { grid-template-columns: 1fr 1fr; }
    .nav-links     { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark-2); flex-direction: column; padding: 12px; border-bottom: 1px solid rgba(255,255,255,.08); gap: 2px; }
    .nav-links.open { display: flex; }
    .nav-links > li > a { border-radius: var(--radius-sm); }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,.04); margin-top: 4px; border-radius: var(--radius-sm); }
    .has-dropdown:hover .dropdown { opacity: 1; }
    .nav-burger { display: flex; }
    .service-detail.reversed .service-detail-text { order: 0; }
    .service-detail.reversed .service-detail-visual { order: 1; }
}
@media (max-width: 600px) {
    .footer-grid    { grid-template-columns: 1fr; }
    .about-values   { grid-template-columns: 1fr; }
    .projects-grid  { grid-template-columns: 1fr 1fr; }
    .services-grid  { grid-template-columns: 1fr; }
    .team-grid      { grid-template-columns: 1fr; }
    .hero-metrics   { gap: 20px; }
    .footer-bottom  { flex-direction: column; text-align: center; }
}
