  :root {
    --bg-primary: #0D0A1A;
    --bg-secondary: #1A1528;
    --bg-card: #1E1832;
    --bg-card-hover: #251D3A;
    --plum-deep: #2D1B4E;
    --plum-mid: #4A2D7A;
    --plum-light: #8B5CF6;
    --plum-glow: rgba(139, 92, 246, 0.3);
    --amber: #C9A227;
    --amber-light: #E8C547;
    --amber-dark: #A07818;
    --amber-glow: rgba(201, 162, 39, 0.3);
    --text-primary: #F5F0FF;
    --text-secondary: #B8A8D0;
    --text-muted: #7A6A9A;
    --border: rgba(139, 92, 246, 0.15);
    --border-hover: rgba(201, 162, 39, 0.4);
    --gold-gradient: linear-gradient(135deg, #E8C547 0%, #C9A227 50%, #A07818 100%);
    --plum-gradient: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.2);
    --shadow-plum: 0 4px 30px rgba(139, 92, 246, 0.2);
  }

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

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

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

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
  }

  a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }

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

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

  .text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ========== HEADER ========== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
  }

  .header.scrolled {
    background: rgba(13, 10, 26, 0.95);
    box-shadow: var(--shadow-md);
  }

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

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

  .logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .logo-primary {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .logo-secondary {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--amber);
  }

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

  .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
    border-radius: 1px;
  }

  .nav-link:hover {
    color: var(--text-primary);
  }

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

  /* ========== BUTTONS ========== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--gold-gradient);
    color: #1a1a1a;
    box-shadow: var(--shadow-gold);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(201, 162, 39, 0.4);
  }

  .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
  }

  .btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber-light);
    transform: translateY(-2px);
  }

  .btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
  }

  .btn-outline-light:hover {
    border-color: var(--text-primary);
    transform: translateY(-2px);
  }

  .btn-large {
    padding: 16px 36px;
    font-size: 1rem;
  }

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

  .btn-arrow {
    width: 18px;
    height: 18px;
  }

  /* ========== MOBILE MENU ========== */
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

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

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

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

  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(13, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .mobile-menu.active {
    transform: translateY(0);
  }

  .mobile-menu-link {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-link:hover {
    color: var(--amber);
  }

  .mobile-call-btn {
    margin-top: 8px;
    justify-content: center;
  }

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

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 27, 78, 0.8) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
                var(--bg-primary);
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
  }

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

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--plum-light);
    margin-bottom: 28px;
  }

  .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--plum-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }

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

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
  }

  .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
  }

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

  /* ========== STAT CARDS ========== */
  .hero-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
  }

  .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
  }

  .stat-card:hover {
    border-color: var(--border-hover);
    transform: translateX(-4px);
    box-shadow: var(--shadow-gold);
  }

  .stat-card--1 { animation: float-slow 6s ease-in-out infinite; }
  .stat-card--2 { animation: float-medium 5s ease-in-out infinite; }
  .stat-card--3 { animation: float-fast 4s ease-in-out infinite; }

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

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

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

  .stat-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .stat-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--plum-light);
  }

  .stat-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1;
  }

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

  .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--plum-light), transparent);
    animation: scroll-line 2s ease-in-out infinite;
  }

  @keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ========== SECTION COMMON ========== */
  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
  }

  .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
  }

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

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

  /* ========== SERVICES ========== */
  .services {
    padding: 100px 0;
    position: relative;
  }

  .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 27, 78, 0.3) 0%, transparent 70%);
    pointer-events: none;
  }

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

  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
  }

  .service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

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

  .service-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
  }

  .service-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ========== ABOUT ========== */
  .about {
    padding: 100px 0;
    position: relative;
  }

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

  .about-image-wrapper {
    position: relative;
  }

  .about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 6/7;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 10, 26, 0.6) 0%, transparent 50%);
    border-radius: 24px;
  }

  .about-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--amber);
    border-radius: 24px;
    opacity: 0.3;
  }

  .about-floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
  }

  .afc-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-light);
  }

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

  .about-content {
    max-width: 480px;
  }

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

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

  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .af-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .af-icon svg {
    width: 20px;
    height: 20px;
    color: var(--amber);
  }

  .about-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
  }

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

  /* ========== CTA BANNER ========== */
  .cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--bg-secondary) 100%);
  }

  .cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 162, 39, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
  }

  .cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
  }

  .cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
  }

  .cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-actions .btn svg {
    width: 18px;
    height: 18px;
  }

  /* ========== TESTIMONIALS ========== */
  .testimonials {
    padding: 100px 0;
    position: relative;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

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

  .testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
  }

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

  .testimonial-quote {
    color: var(--amber);
    opacity: 0.4;
    margin-bottom: 16px;
  }

  .testimonial-quote svg {
    width: 36px;
    height: 36px;
  }

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

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

  .ta-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum-mid), var(--plum-deep));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum-light);
    flex-shrink: 0;
  }

  .ta-info {
    display: flex;
    flex-direction: column;
  }

  .ta-info strong {
    font-size: 0.9rem;
    color: var(--text-primary);
  }

  .ta-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* ========== CONTACT ========== */
  .contact {
    padding: 100px 0;
    position: relative;
  }

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

  .contact-info {
    max-width: 480px;
  }

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

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .cd-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cd-icon svg {
    width: 20px;
    height: 20px;
    color: var(--plum-light);
  }

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

  .contact-detail span,
  .contact-detail a {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
  }

  .contact-detail a:hover {
    color: var(--amber);
  }

  .contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
  }

  .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
  }

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

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--plum-light);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  }

  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6A9A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  .form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
  }

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

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

  .form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  .success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
    border: 2px solid var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .success-icon svg {
    width: 28px;
    height: 28px;
    color: var(--amber);
  }

  .form-success h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 8px;
  }

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

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

  /* ========== FOOTER ========== */
  .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .footer-brand {
    max-width: 300px;
  }

  .footer-logo {
    margin-bottom: 16px;
  }

  .footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amber);
    margin-bottom: 20px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
  }

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

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 0.9rem;
    color: var(--text-secondary);
  }

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

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
  }

  .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
  }

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

    .hero-cards {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .stat-card {
      flex: 1;
      min-width: 200px;
    }

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

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

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

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

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

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

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

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

    .hero {
      padding: 100px 0 120px;
    }

    .hero-title {
      font-size: 2.2rem;
    }

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

    .stat-card {
      min-width: auto;
      width: 100%;
    }

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

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

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

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

    .footer-bottom-inner {
      flex-direction: column;
      text-align: center;
    }

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

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

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

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

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

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

    .cta-actions .btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  }
