/* ============================================
   HAKAVERET - הכוורת
   Honeycomb Design System
   ============================================ */

/* ---- 1. CSS Custom Properties ---- */
:root {
    --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;
    --amber-950: #451A03;

    --white: #FFFFFF;
    --cream: #FFFDF5;
    --dark: #1C1208;
    --dark-soft: #2D1F10;
    --text-primary: #2D1F10;
    --text-secondary: #6B5A3E;
    --text-light: #FEF3C7;

    --font-display: 'Secular One', sans-serif;
    --font-body: 'Heebo', sans-serif;

    --header-height: 80px;
    --container-width: 1200px;
    --radius: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 8px rgba(146, 64, 14, 0.08);
    --shadow-md: 0 8px 30px rgba(146, 64, 14, 0.12);
    --shadow-lg: 0 20px 60px rgba(146, 64, 14, 0.15);
    --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.3);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.skip-link {
    position: absolute;
    top: -100%;
    right: 0;
    background: var(--amber-600);
    color: var(--white);
    padding: 12px 24px;
    z-index: 1000;
    border-radius: 0 0 0 var(--radius);
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

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

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section--light {
    background-color: var(--cream);
}

.section--amber {
    background-color: var(--amber-50);
}

.section--dark {
    background-color: var(--dark);
    color: var(--text-light);
}

/* ---- 4. Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header--light .section-title {
    color: var(--amber-100);
}

.section-header--light .section-line {
    background: var(--amber-500);
}

.section-hex-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-500);
    position: relative;
}

.section-hex-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--amber-500);
    opacity: 0.08;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.section-hex-icon svg {
    width: 32px;
    height: 32px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--amber-500);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    top: 0;
    width: 12px;
    height: 4px;
    background: var(--amber-300);
    border-radius: 2px;
}

.section-line::before {
    right: calc(100% + 8px);
}

.section-line::after {
    left: calc(100% + 8px);
}

/* ---- 5. Honeycomb Background Pattern ---- */
.honeycomb-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66' fill='none' stroke='%23D97706' stroke-width='0.5' opacity='0.15'/%3E%3Cpath d='M28 100L0 84L0 50L28 34L56 50L56 84L28 100' fill='none' stroke='%23D97706' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 56px 100px;
}

/* ---- 6. Header & Navigation ---- */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    z-index: 100;
    transition: all var(--transition-medium);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 253, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    height: 64px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
    transition: color var(--transition-fast);
}

.logo-icon {
    width: 36px;
    height: 40px;
    color: var(--amber-500);
    transition: transform var(--transition-medium);
}

.logo:hover .logo-icon {
    transform: rotate(30deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    transition: color var(--transition-medium);
}

.scrolled .logo-text {
    color: var(--amber-800);
}

.scrolled .logo-icon {
    color: var(--amber-600);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.scrolled .nav-link {
    color: var(--text-secondary);
}

.scrolled .nav-link:hover {
    color: var(--amber-700);
    background: var(--amber-50);
}

.nav-link--cta {
    background: var(--amber-500);
    color: var(--white) !important;
    font-weight: 700;
    padding: 8px 20px;
}

.nav-link--cta:hover {
    background: var(--amber-600) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.scrolled .mobile-menu-btn span {
    background: var(--amber-700);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
    background: var(--white);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
    background: var(--white);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 18, 8, 0.97);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--amber-100);
    padding: 12px 32px;
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link:hover {
    color: var(--amber-400);
    background: rgba(251, 191, 36, 0.08);
}

/* ---- 7. Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, var(--amber-950) 0%, var(--dark) 40%, var(--amber-900) 100%);
    overflow: hidden;
}

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

.hero-honeycomb svg {
    width: 100%;
    height: 100%;
}

.hero-honeycomb .hex-cell {
    fill: rgba(251, 191, 36, 0.03);
    stroke: rgba(217, 119, 6, 0.15);
    stroke-width: 1;
    opacity: 0;
    animation: hexReveal 0.8s forwards;
}

@keyframes hexReveal {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(28, 18, 8, 0.4) 70%, rgba(28, 18, 8, 0.7) 100%);
    pointer-events: none;
}

/* Floating Decorative Hexagons */
.float-hex {
    position: absolute;
    border: 2px solid rgba(251, 191, 36, 0.12);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex 8s ease-in-out infinite;
}

.float-hex--1 {
    width: 120px;
    height: 138px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: rgba(251, 191, 36, 0.04);
}

.float-hex--2 {
    width: 80px;
    height: 92px;
    top: 60%;
    left: 10%;
    animation-delay: -2s;
    background: rgba(217, 119, 6, 0.06);
}

.float-hex--3 {
    width: 160px;
    height: 184px;
    top: 15%;
    right: 8%;
    animation-delay: -4s;
    background: rgba(251, 191, 36, 0.03);
}

.float-hex--4 {
    width: 60px;
    height: 69px;
    bottom: 20%;
    right: 15%;
    animation-delay: -1s;
    background: rgba(217, 119, 6, 0.08);
}

.float-hex--5 {
    width: 100px;
    height: 115px;
    bottom: 10%;
    left: 20%;
    animation-delay: -3s;
    background: rgba(251, 191, 36, 0.05);
}

@keyframes floatHex {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 50px;
    color: var(--amber-300);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    animation: fadeSlideUp 0.8s 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(251, 191, 36, 0.2);
    animation: fadeSlideUp 0.8s 0.4s both;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--amber-400);
    margin-bottom: 20px;
    animation: fadeSlideUp 0.8s 0.6s both;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(254, 243, 199, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeSlideUp 0.8s 0.8s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 1s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--amber-500);
    color: var(--white);
    border-color: var(--amber-500);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: var(--amber-600);
    border-color: var(--amber-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--amber-300);
    border-color: var(--amber-400);
}

.btn-outline:hover {
    background: rgba(251, 191, 36, 0.1);
    color: var(--amber-200);
    transform: translateY(-2px);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(254, 243, 199, 0.4);
    font-size: 0.8rem;
    animation: fadeSlideUp 0.8s 1.4s both;
}

.scroll-hex {
    width: 20px;
    height: 23px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--amber-500);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

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

/* ---- 8. About Section ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

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

.about-text p:first-child {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.stat-hex {
    width: 160px;
    height: 184px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-medium);
}

.stat-hex::before {
    content: '';
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--amber-300);
    transition: all var(--transition-medium);
}

.stat-hex::after {
    content: '';
    position: absolute;
    inset: 3px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, var(--amber-100) 0%, var(--amber-50) 100%);
    transition: background var(--transition-medium);
}

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

.stat-hex:hover::before {
    background: var(--amber-400);
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
}

.stat-hex:hover::after {
    background: linear-gradient(135deg, var(--amber-200) 0%, var(--amber-100) 100%);
}

.stat-hex-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--amber-700);
    line-height: 1.2;
}

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

/* ---- 9. Services Section ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    position: relative;
    transition: all var(--transition-medium);
    border: 1px solid var(--amber-100);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-400), var(--amber-600));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

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

.service-card-hex {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 138px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--amber-50);
    opacity: 0.5;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--amber-100), var(--amber-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--amber-600);
    position: relative;
}

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

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 19px;
    border: 2px solid var(--amber-200);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    padding-top: 0;
}

.service-details.open {
    max-height: 800px;
    padding-top: 16px;
}

.service-details h4 {
    font-size: 1rem;
    color: var(--amber-700);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-details ul {
    margin-bottom: 20px;
    padding-right: 0;
}

.service-details li {
    position: relative;
    padding-right: 24px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}

.service-details li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 10px;
    height: 11px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--amber-400);
}

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

.service-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--amber-600);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    transition: color var(--transition-fast);
    margin-top: 8px;
}

.service-toggle:hover {
    color: var(--amber-700);
}

.toggle-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}


/* ---- 10. Clients Section ---- */
.clients {
    padding: 80px 0;
}

.clients-marquee {
    overflow: hidden;
    margin: 40px -24px;
    padding: 20px 0;
    position: relative;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    right: 0;
    background: linear-gradient(to left, var(--dark), transparent);
}

.clients-marquee::after {
    left: 0;
    background: linear-gradient(to right, var(--dark), transparent);
}

.clients-track {
    display: flex;
    gap: 16px;
    animation: marqueeRTL 30s linear infinite;
    width: max-content;
}

@keyframes marqueeRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.client-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 50px;
    white-space: nowrap;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.client-item:hover {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.3);
}

.client-hex-badge {
    width: 10px;
    height: 11px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--amber-500);
    flex-shrink: 0;
}

.client-item span {
    font-size: 0.95rem;
    color: var(--amber-200);
    font-weight: 500;
}

.clients-note {
    text-align: center;
    color: rgba(254, 243, 199, 0.5);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* ---- 11. Values Section ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--amber-100);
    transition: all var(--transition-medium);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--amber-50);
    opacity: 0.4;
    transform: translate(40%, 40%);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--amber-200);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--amber-600);
    margin-bottom: 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
}

.value-card p:last-child {
    margin-bottom: 0;
}

/* ---- 12. Contact Section ---- */
.contact {
    background: linear-gradient(160deg, var(--amber-50) 0%, var(--amber-100) 100%);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: -40px;
    margin-bottom: 50px;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--amber-200);
    transition: all var(--transition-medium);
    text-decoration: none;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber-400);
}

div.contact-card {
    cursor: default;
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-100);
    border-radius: 50%;
    margin-bottom: 16px;
    color: var(--amber-600);
    transition: all var(--transition-fast);
}

.contact-card:hover .contact-icon {
    background: var(--amber-500);
    color: var(--white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 700;
    color: var(--amber-700);
    font-size: 0.95rem;
    direction: ltr;
    unicode-bidi: plaintext;
}

/* ---- 13. Footer ---- */
.site-footer {
    background: var(--dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer-honeycomb {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66' fill='none' stroke='%23FBBF24' stroke-width='0.5' opacity='0.3'/%3E%3Cpath d='M28 100L0 84L0 50L28 34L56 50L56 84L28 100' fill='none' stroke='%23FBBF24' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 56px 100px;
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 24px 40px;
    position: relative;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo-icon {
    width: 36px;
    height: 40px;
    color: var(--amber-500);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--amber-400);
}

.footer-tagline {
    color: rgba(254, 243, 199, 0.5);
    font-size: 0.95rem;
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--amber-400);
    margin-bottom: 16px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    display: block;
    color: rgba(254, 243, 199, 0.6);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
}

.footer-bottom .container {
    padding: 20px 24px;
}

.footer-bottom p {
    text-align: center;
    color: rgba(254, 243, 199, 0.3);
    font-size: 0.85rem;
}

/* ---- 14. Animations & Reveals ---- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- 15. Responsive Design ---- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: center;
        position: static;
    }

    .stat-hex {
        width: 130px;
        height: 150px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section {
        padding: 70px 0;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-hex {
        width: 110px;
        height: 127px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

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

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .float-hex--3,
    .float-hex--5 {
        display: none;
    }
}

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

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-stats {
        gap: 12px;
    }

    .stat-hex {
        width: 95px;
        height: 110px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .service-card {
        padding: 28px 20px 24px;
    }

    .value-card {
        padding: 28px 24px;
    }

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

/* ---- 16. Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-up {
        opacity: 1;
        transform: none;
    }

    .clients-track {
        animation: none;
    }

    .hero-honeycomb .hex-cell {
        opacity: 1;
    }

    .float-hex {
        animation: none;
    }
}

/* ---- 17. Print Styles ---- */
@media print {
    .site-header,
    .hero-honeycomb,
    .hero-overlay,
    .hero-scroll-indicator,
    .float-hex,
    .honeycomb-bg-pattern,
    .footer-honeycomb,
    .mobile-overlay {
        display: none !important;
    }

    .hero {
        min-height: auto;
        background: var(--white) !important;
        color: var(--dark) !important;
    }

    .hero-title,
    .hero-tagline {
        color: var(--dark) !important;
    }

    .section--dark {
        background: var(--white) !important;
        color: var(--dark) !important;
    }
}
