﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: auto; }
    body { font-family: 'Inter', sans-serif; background: #f0efeb; color: #1a1919; overflow-x: hidden; cursor: none; }

    /* Custom Cursor */
    #cursor { position: fixed; width: 10px; height: 10px; background: #1a1919; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s, background .3s; mix-blend-mode: difference; }
    #cursor-follower { position: fixed; width: 40px; height: 40px; border: 1px solid rgba(26,25,25,0.4); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .3s, height .3s, opacity .3s; }
    body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 20px; height: 20px; }
    body:has(a:hover) #cursor-follower, body:has(button:hover) #cursor-follower { width: 60px; height: 60px; opacity: 0.5; }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: #f0efeb; }
    ::-webkit-scrollbar-thumb { background: #1a1919; border-radius: 2px; }

    /* Nav */
    #navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; mix-blend-mode: normal; }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; background: rgba(240,239,235,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(26,25,25,0.08); }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-box { width: 38px; height: 38px; background: #1a1919; display: flex; align-items: center; justify-content: center; border-radius: 2px; }
    .logo-box span { color: #f0efeb; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; }
    .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
    .logo-text .l1 { font-size: 13px; font-weight: 700; color: #1a1919; letter-spacing: 2px; }
    .logo-text .l2 { font-size: 11px; font-weight: 400; color: #1a1919; letter-spacing: 2px; }
    .nav-links { display: flex; align-items: center; gap: 36px; }
    .nav-links a { font-size: 13px; color: #1a1919; text-decoration: none; letter-spacing: 0.5px; position: relative; }
    .nav-links a::after { content:''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: #1a1919; transition: width .3s ease; }
    .nav-links a:hover::after { width: 100%; }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .btn-write { font-size: 13px; font-weight: 500; letter-spacing: 1px; color: #1a1919; text-decoration: none; transition: background 0.3s, color 0.3s; }
    .btn-write:hover { background: #1a1919; color: #f0efeb; }
    .btn-search, .btn-menu { width: 40px; height: 40px; border: 1px solid #1a1919; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; background: transparent; transition: background .3s, color .3s; }
    .btn-search:hover, .btn-menu:hover { background: #1a1919; }
    .btn-search:hover svg path, .btn-menu:hover svg rect, .btn-menu:hover svg line, .btn-menu:hover svg path { stroke: #f0efeb; }

    /* ===== HERO â€” MINIMALIST THEME ===== */
    #hero {
      height: 100vh; min-height: 700px;
      position: relative; overflow: hidden;
      display: flex; align-items: center;
      padding: 80px 0 0; /* offset for fixed navbar */
      background: #f3f1ec; color: #1a1919;
    }

    /* Vertical grid lines */
    .hero-grid-lines {
      position: absolute; inset: 0; pointer-events: none;
      display: flex; justify-content: space-between;
      padding: 0 40px; opacity: 1; z-index: 1;
    }
    .hero-grid-line {
      width: 1px; height: 100%; border-left: 1px dashed rgba(26,25,25,0.08);
    }

    /* Container Split Layout */
    .hero-container {
      width: 100%; max-width: 1440px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 60px;
      padding: 0 80px; position: relative; z-index: 5;
    }

    /* Left content */
    .hero-content {
      padding-top: 0; max-width: 580px;
      position: relative; z-index: 10;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 9px; letter-spacing: 4px; color: #555;
      text-transform: uppercase; margin-bottom: 40px;
      padding: 6px 16px; border: 1px solid rgba(26,25,25,0.2); border-radius: 40px;
    }
    .hero-badge-dot {
      width: 5px; height: 5px; border-radius: 50%; background: #1a1919;
    }

    .hero-title {
      font-size: clamp(60px, 6vw, 100px);
      font-weight: 400; color: #1a1919;
      line-height: 1.05; letter-spacing: -2px; margin-bottom: 30px;
    }

    .hero-desc {
      font-size: 15px; color: #555; line-height: 1.8;
      max-width: 500px; margin-bottom: 50px; font-weight: 400;
    }

    /* Circle Button CTA */
    .hero-action {
      display: inline-flex; align-items: center; gap: 16px; text-decoration: none;
      transition: transform 0.3s; padding-left: 0;
    }
    .hero-action-circle {
      width: 50px; height: 50px; border-radius: 50%; border: 1px solid #1a1919;
      display: flex; align-items: center; justify-content: center; background: transparent;
      transition: background 0.4s;
    }
    .hero-action:hover { transform: translateY(-3px); }
    .hero-action:hover .hero-action-circle { background: #1a1919; }
    .hero-action:hover .hero-action-circle svg path { stroke: #f3f1ec; }
    .hero-action span {
      font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #1a1919; font-weight: 600;
    }

    /* Right Widget Contact Form */
    .hero-right-widget {
      width: 100%; max-width: 450px; margin-left: auto;
      background: #fff; padding: 40px; border-radius: 4px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.04);
      position: relative; z-index: 10;
    }
    .widget-title {
      font-size: 24px; color: #1a1919; font-weight: 400; margin-bottom: 12px; line-height: 1.2;
    }
    .widget-desc {
      font-size: 14px; color: #555; margin-bottom: 30px; line-height: 1.5;
    }
    .widget-form {
      display: flex; flex-direction: column; gap: 16px;
    }
    .widget-form input {
      width: 100%; padding: 14px 16px; border: 1px solid #ddd; border-radius: 4px;
      font-size: 14px; background: transparent; outline: none; transition: border-color 0.3s;
    }
    .widget-form input:focus { border-color: #1a1919; }
    .widget-btn {
      display: inline-flex; justify-content: space-between; align-items: center;
      background: #1a1919; color: #f3f1ec; padding: 16px 20px; border: none;
      border-radius: 4px; font-size: 13px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 2px; cursor: pointer; transition: background 0.3s;
      margin-top: 10px;
    }
    .widget-btn:hover { background: #333; }
    
    /* Text Reveal Animation Utility */
    .anim-line { overflow: hidden; display: block; }
    .anim-word { display: inline-block; }

    /* Vertical Navigation Dots */
    .hero-vertical-nav {
      position: absolute; right: 0; top: 50%; transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 12px; z-index: 10;
    }
    .hero-dot {
      width: 5px; height: 5px; border-radius: 50%; border: 1px solid #a1a1a1; cursor: pointer;
      background: transparent; transition: all 0.3s;
    }
    .hero-dot.active {
      background: #1a1919; border-color: #1a1919;
    }

    /* Stats Section */
    #stats { background: #1c1c1c; padding: 120px 40px; position: relative; overflow: hidden; }
    .stats-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1464938050520-ef2270bb8ce8?w=1920&q=80') center/cover no-repeat; opacity: 0.12; }
    .stats-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; position: relative; z-index: 2; }
    .stats-left { display: flex; flex-direction: column; justify-content: space-between; }
    .stats-company-label { font-size: 10px; letter-spacing: 4px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 40px; }
    .stats-company-title { font-size: clamp(28px, 3.5vw, 46px); font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 30px; }
    .stats-company-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 380px; }
    .stats-about-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-top: 50px; }
    .stats-about-btn { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; flex-shrink: 0; }
    .stats-about-link:hover .stats-about-btn { background: rgba(255,255,255,0.1); transform: rotate(45deg); }
    .stats-about-text { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 1px; }
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item { border-top: 1px solid rgba(255,255,255,0.15); padding: 40px 0; }
    .stat-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid rgba(255,255,255,0.15); }
    .stat-item:nth-child(even) { padding-left: 40px; }
    .stat-number { font-size: clamp(72px, 10vw, 140px); font-weight: 700; color: #fff; line-height: 1; letter-spacing: -3px; }
    .stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; max-width: 180px; line-height: 1.6; }

    /* Services */
    #services { background: #f0efeb; padding: 120px 40px; }
    .section-label { font-size: 10px; letter-spacing: 4px; color: #8a8a8a; text-transform: uppercase; margin-bottom: 60px; }
    .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
    .services-title { font-size: clamp(36px, 5vw, 64px); font-weight: 300; color: #1a1919; line-height: 1.1; }
    .service-list { list-style: none; border-top: 1px solid #d4d2cc; }
    .service-item { display: flex; align-items: center; border-bottom: 1px solid #d4d2cc; padding: 28px 0; cursor: pointer; transition: padding .3s ease; position: relative; overflow: hidden; }
    .service-item:hover { padding-left: 20px; }
    .service-item::before { content:''; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: #1a1919; transition: height .3s ease; }
    .service-item:hover::before { height: 100%; }
    .service-num { font-size: 12px; color: #8a8a8a; width: 60px; letter-spacing: 1px; }
    .service-name { font-size: clamp(18px, 2.5vw, 28px); font-weight: 300; color: #1a1919; flex: 1; }
    .service-arrow { width: 32px; height: 32px; border: 1px solid #d4d2cc; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; }
    .service-item:hover .service-arrow { background: #1a1919; transform: rotate(45deg); }
    .service-item:hover .service-arrow svg { stroke: #f0efeb; }
    .services-for-individual { margin-top: 80px; }
    .services-for-individual h3 { font-size: 13px; letter-spacing: 3px; color: #8a8a8a; text-transform: uppercase; margin-bottom: 40px; }

    /* Cases */
    #cases { background: #111; padding: 120px 0 0; overflow: hidden; position: relative; }
    .cases-header { padding: 0 40px 60px; display: flex; justify-content: space-between; align-items: flex-end; }
    .cases-title { font-size: clamp(32px, 4vw, 54px); font-weight: 300; color: #fff; line-height: 1.2; max-width: 440px; }
    .cases-count { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 2px; }
    .cases-slider-container { position: relative; padding-bottom: 40px; }
    .cases-slider { display: flex; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; padding: 0 40px; gap: 30px; }
    .cases-slider::-webkit-scrollbar { display: none; }
    
    .case-card { width: min(680px, 75vw); height: 480px; background: #1a1919; border-radius: 16px; padding: 48px 40px 32px; flex-shrink: 0; cursor: pointer; transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .5s; position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
    .case-card-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.2; transition: opacity .6s, transform .8s; filter: grayscale(60%); }
    .case-card:hover .case-card-bg { opacity: 0.6; transform: scale(1.05); filter: grayscale(0%); }
    .case-card-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(17,17,17,0) 0%, rgba(17,17,17,0.9) 100%); }
    
    .case-card-num, .case-card-title, .case-card-footer { position: relative; z-index: 2; }
    .case-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
    
    .case-card-num { font-size: 12px; color: #fff; letter-spacing: 2px; font-weight: 600; }
    .case-card-title { font-size: clamp(20px, 2.5vw, 30px); font-weight: 300; color: #fff; line-height: 1.35; flex: 1; padding: 40px 0 20px; max-width: 95%; text-shadow: 0 4px 12px rgba(0,0,0,0.6); }
    .case-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; }
    .case-card-tag { font-size: 11px; color: rgba(255,255,255,0.8); letter-spacing: 2px; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 500; }
    .case-card-arrow { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s, border-color .3s; background: rgba(0,0,0,0.3); backdrop-filter: blur(4px); }
    .case-card:hover .case-card-arrow { background: #fff; transform: rotate(45deg); border-color: #fff; }
    .case-card:hover .case-card-arrow svg path { stroke: #111; }

    .cases-pagination {
      position: absolute; right: 0; top: 0; height: 100%; width: 70px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; z-index: 10; pointer-events: none;
      background: linear-gradient(to left, #161616 20%, rgba(22,22,22,0) 100%);
    }
    .cases-pagination .dot { width: 4px; height: 4px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); transition: background .3s, transform .3s; }
    .cases-pagination .dot.active { background: #fff; border-color: #fff; transform: scale(1.5); }

    .cases-bottom { padding: 40px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .cases-all-link { display: flex; align-items: center; gap: 24px; text-decoration: none; }
    .cases-all-circle { width: 64px; height: 64px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .3s, border-color .3s; }
    .cases-all-link:hover .cases-all-circle { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }
    .cases-all-text { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }
    .cases-nav { display: flex; gap: 16px; }
    .cases-nav button { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .3s, border-color .3s; }
    .cases-nav button:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }

    /* Awards */
    #awards { background: #f0efeb; padding: 120px 40px; }
    .awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
    .awards-left .section-label { margin-bottom: 40px; }
    .awards-left h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.2; }
    .awards-list { list-style: none; border-top: 1px solid #d4d2cc; }
    .award-item { display: flex; align-items: flex-start; gap: 24px; padding: 28px 0; border-bottom: 1px solid #d4d2cc; cursor: pointer; }
    .award-num { font-size: 11px; color: #8a8a8a; letter-spacing: 1px; margin-top: 4px; width: 30px; }
    .award-info { flex: 1; }
    .award-title { font-size: 18px; font-weight: 400; color: #1a1919; }
    .award-detail { font-size: 12px; color: #8a8a8a; margin-top: 6px; }
    .award-year { font-size: 12px; color: #8a8a8a; align-self: flex-start; margin-top: 4px; }

    /* News */
    #news { background: #f0efeb; padding: 120px 40px; border-top: 1px solid #d4d2cc; }
    .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
    .news-title { font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: #1a1919; }
    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .news-card { border-top: 1px solid #d4d2cc; padding-top: 24px; cursor: pointer; }
    .news-date { font-size: 11px; color: #8a8a8a; letter-spacing: 1px; margin-bottom: 16px; }
    .news-card-title { font-size: 17px; font-weight: 400; color: #1a1919; line-height: 1.4; margin-bottom: 16px; }
    .news-card-link { font-size: 12px; color: #8a8a8a; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color .3s; }
    .news-card-link:hover { color: #1a1919; }

    /* Contact */
    #contact { background: #1a1919; padding: 120px 40px; }
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
    .contact-left h2 { font-size: clamp(40px, 6vw, 80px); font-weight: 300; color: #fff; line-height: 1.1; letter-spacing: -2px; margin-bottom: 40px; }
    .contact-left p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 360px; }
    .form-group { margin-bottom: 30px; }
    .form-group label { display: block; font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
    .form-group input, .form-group textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 12px 0; color: #fff; font-size: 16px; font-family: 'Inter', sans-serif; outline: none; transition: border-color .3s; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
    .form-group input:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.5); }
    .form-group textarea { height: 80px; resize: none; }
    .form-privacy { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; margin-bottom: 30px; }
    .form-privacy input { margin-top: 3px; accent-color: rgba(255,255,255,0.5); }
    .form-privacy label { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5; }
    .form-privacy a { color: rgba(255,255,255,0.5); }
    .btn-submit { display: flex; align-items: center; gap: 16px; cursor: pointer; border: none; background: transparent; }
    .btn-submit-circle { width: 64px; height: 64px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; }
    .btn-submit:hover .btn-submit-circle { background: rgba(255,255,255,0.1); transform: rotate(45deg); }
    .btn-submit-text { font-size: 12px; letter-spacing: 3px; color: rgba(255,255,255,0.6); text-transform: uppercase; }

    /* Footer */
    footer { background: #1c1c1c; border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 40px 40px; }
    .footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 60px; align-items: start; }
    .footer-col h4 { font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 24px; }
    .footer-col a, .footer-col p, .footer-col span { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; line-height: 1.6; transition: color .3s; }
    .footer-col a:hover { color: rgba(255,255,255,0.9); }
    .footer-newsletter-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; color: #fff; line-height: 1.3; margin-bottom: 30px; }
    .footer-email-row { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 12px; margin-bottom: 16px; }
    .footer-email-input { flex: 1; background: transparent; border: none; color: #fff; font-size: 14px; font-family: 'Inter',sans-serif; outline: none; }
    .footer-email-input::placeholder { color: rgba(255,255,255,0.25); }
    .footer-email-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; background: transparent; transition: background .3s, transform .3s; flex-shrink: 0; }
    .footer-email-btn:hover { background: rgba(255,255,255,0.1); transform: rotate(45deg); }
    .footer-privacy-check { display: flex; align-items: flex-start; gap: 10px; }
    .footer-privacy-check input { margin-top: 3px; accent-color: rgba(255,255,255,0.6); }
    .footer-privacy-check label { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }
    .footer-privacy-check a { display: inline; font-size: 11px; color: rgba(255,255,255,0.5); text-decoration: underline; margin-bottom: 0; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 60px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
    .footer-ava { font-size: 11px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color .3s; }
    .footer-ava:hover { color: rgba(255,255,255,0.6); }

    /* Mobile Menu Overlay */
    #mobile-menu { position: fixed; inset: 0; background: #f0efeb; z-index: 999; display: flex; padding: 100px 40px 60px; transform: translateX(100%); overflow-y: auto; overflow-x: hidden; }
    #mobile-menu.open { transform: translateX(0); }
    .mmenu-left { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; margin: auto 0; padding-bottom: 40px; }
    .mmenu-link { font-size: clamp(36px, 6vw, 64px); font-weight: 300; color: #1a1919; text-decoration: none; display: block; padding: 12px 0; border-bottom: 1px solid #d4d2cc; transition: padding .3s; }
    .mmenu-link:hover { padding-left: 20px; }
    .mmenu-right { width: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
    .mmenu-address { margin-bottom: 30px; }
    .mmenu-address h4 { font-size: 10px; letter-spacing: 3px; color: #8a8a8a; text-transform: uppercase; margin-bottom: 12px; }
    .mmenu-address p { font-size: 13px; color: #1a1919; line-height: 1.8; }
    .mmenu-socials { display: flex; gap: 20px; flex-wrap: wrap; }
    .mmenu-socials a { font-size: 12px; color: #8a8a8a; text-decoration: none; transition: color .3s; }
    .mmenu-socials a:hover { color: #1a1919; }
    .mmenu-copy { font-size: 11px; color: #8a8a8a; margin-top: 20px; }

    /* Animations helpers */
    .reveal-up { transform: translateY(60px); opacity: 0; }
    .reveal-left { transform: translateX(-60px); opacity: 0; }
    .clip-text { overflow: hidden; }
    .clip-text-inner { transform: translateY(100%); display: block; }

    /* Horizontal line expand */
    .line-expand { width: 0; height: 1px; background: #d4d2cc; }

    /* Services two columns for individuals */
    .services-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

    /* Sticky section indicator */
    .section-indicator { position: fixed; right: 24px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 10px; }
    .ind-dot { width: 6px; height: 6px; border-radius: 50%; border: 1px solid rgba(26,25,25,0.4); transition: background .3s, transform .3s; }
    .ind-dot.active { background: #1a1919; transform: scale(1.4); }

    @media (max-height: 850px) {
      .hero-scroll { display: none !important; }
    }

    @media (max-width: 768px) {
      .section-indicator { display: none; }
      .nav-inner { padding: 16px 20px; }
      .nav-links { display: none; }
      .nav-right > span, .nav-right .btn-write { display: none !important; }
      #hero { min-height: auto; height: auto; padding: 100px 0 60px; }
      .hero-container { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
      .hero-content { padding-top: 0; max-width: 100%; }
      .hero-title { font-size: clamp(42px, 10vw, 60px); margin-bottom: 20px; letter-spacing: -1px; }
      .hero-desc { font-size: 15px; margin-bottom: 30px; }
      .hero-right-widget { max-width: 100%; margin-left: 0; }
      .hero-grid-lines { display: none; }
      #stats { padding: 80px 20px; }
      .stats-layout { grid-template-columns: 1fr; gap: 40px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-item:nth-child(odd) { border-right: none; padding-right: 0; }
      #services { padding: 80px 20px; }
      .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .services-dual { grid-template-columns: 1fr; }
      #cases { padding: 80px 0 0; }
      .cases-header { padding: 0 20px 40px; flex-direction: column; align-items: flex-start; gap: 16px; }
      .cases-slider { padding: 0 20px; gap: 20px; }
      .case-card { width: calc(100vw - 40px); height: auto; min-height: 380px; padding: 30px 24px; border-radius: 12px; }
      .cases-pagination { display: none; } /* Simplified on mobile */
      .cases-bottom { padding: 40px 20px; flex-direction: column; gap: 30px; border-top: 1px solid rgba(255,255,255,0.08); }
      .cases-all-link { gap: 16px; }
      .cases-nav { order: -1; }
      #awards { padding: 80px 20px; }
      .awards-grid { grid-template-columns: 1fr; }
      #news { padding: 80px 20px; }
      .news-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 60px; }
      #contact { padding: 80px 20px; }
      footer { padding: 60px 20px 30px; }
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      .mmenu-right { display: none; }
    }
