*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #fdfaf5;
    --warm-white: #fff9f0;
    --gold: #c9963a;
    --gold-light: #e8c070;
    --teal: #2a7a6f;
    --teal-light: #3da898;
    --dark: #1c2b28;
    --text: #2e3d3a;
    --muted: #6b7e7a;
    --card-bg: rgba(255,255,255,0.72);
    --shadow: 0 8px 40px rgba(42,122,111,0.10);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* ── GRADIENT BACKGROUND ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 15% 10%, rgba(201,150,58,0.13) 0%, transparent 60%),
      radial-gradient(ellipse 70% 70% at 85% 20%, rgba(42,122,111,0.11) 0%, transparent 55%),
      radial-gradient(ellipse 60% 50% at 50% 90%, rgba(61,168,152,0.09) 0%, transparent 60%),
      linear-gradient(160deg, #fdf8ef 0%, #f3faf8 50%, #eef7f5 100%);
    z-index: 0;
    pointer-events: none;
  }

  /* ── HEADER ── */
  header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 4rem;
    backdrop-filter: blur(12px);
    background: rgba(253,250,245,0.82);
    border-bottom: 1px solid rgba(201,150,58,0.18);
  }


  nav { display: flex; gap: 2rem; }
  nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--teal); }

  .cta-btn {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(42,122,111,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(42,122,111,0.35); }

  /* ── HERO SLIDER ── */
  .hero1{
    position: relative;
    z-index: 1;
    height: 580px;
    overflow: hidden;
  }

  .slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 6rem;
    position: relative;
  }

  .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--slide-bg);
    opacity: 0.05;
  }

  .slide-content {
    max-width: 600px;
    animation: fadeUp 0.8s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .slide-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(42,122,111,0.1);
    border: 1px solid rgba(42,122,111,0.2);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
  }

  .slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 1.2rem;
  }
  .slide-title em {
    font-style: italic;
    color: var(--teal);
  }

  .slide-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 480px;
  }

  .slide-actions { display: flex; gap: 1rem; align-items: center; }

  .btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(42,122,111,0.3);
    transition: all 0.2s;
    text-decoration: none;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,122,111,0.4); }

  .btn-ghost {
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    display: flex; align-items: center; gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    transition: gap 0.2s;
    text-decoration: none;
  }
  .btn-ghost:hover { gap: 0.7rem; }

  /* Floating visual right side */
  .slide-visual {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
  }

  .visual-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(42,122,111,0.15);
    animation: spin 18s linear infinite;
  }
  .visual-ring:nth-child(2) {
    inset: 20px;
    border-color: rgba(201,150,58,0.12);
    animation-direction: reverse;
    animation-duration: 14s;
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .visual-center {
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42,122,111,0.08), rgba(61,168,152,0.12));
    backdrop-filter: blur(2px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(42,122,111,0.1);
  }

  .visual-icon { font-size: 3.5rem; }
  .visual-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
  }
  .visual-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Dots on ring */
  .ring-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    top: 0; left: 50%;
    transform: translateX(-50%);
    transform-origin: 50% 170px;
  }

  /* ── SLIDER CONTROLS ── */
  .slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 6rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 5;
  }

  .dot-nav {
    display: flex; gap: 0.5rem;
  }
  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(42,122,111,0.25);
    cursor: pointer;
    transition: all 0.3s;
  }
  .dot.active {
    background: var(--teal);
    width: 24px;
    border-radius: 4px;
  }

  .arrow-btns { display: flex; gap: 0.5rem; }
  .arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(42,122,111,0.3);
    background: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--teal);
    transition: all 0.2s;
    backdrop-filter: blur(8px);
  }
  .arrow:hover {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
  }

  /* ── SECTION TITLE ── */
  .section {
    position: relative;
    z-index: 1;
    padding: 5rem 4rem;
  }

  .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
  }

  .section-line {
    width: 56px; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 2px;
    margin: 1.2rem auto 0;
  }

  /* ── SERVICE CARDS GRID ── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.6rem;
  }

  .card {
    background: var(--card-bg);
    border: 1px solid rgba(201,150,58,0.12);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(42,122,111,0.15); }
  .card:hover::before { opacity: 1; }

  .card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .card-icon {
    width: 50px; height: 50px; min-width: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(42,122,111,0.1), rgba(61,168,152,0.15));
  }

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
  }

  .card-subtitle {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.2rem;
  }

  .divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(42,122,111,0.15), transparent);
    margin: 1rem 0;
  }

  /* Sub-divisions */
  .subs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .sub-tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.7rem;
    background: rgba(42,122,111,0.07);
    color: var(--teal);
    border-radius: 50px;
    border: 1px solid rgba(42,122,111,0.15);
    font-weight: 500;
  }

  /* Services list */
  .services-list {
    list-style: none;
    margin-bottom: 1.2rem;
  }

  .services-list li {
    font-size: 0.82rem;
    color: var(--text);
    padding: 0.3rem 0;
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .services-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 0.75rem;
  }

  /* Experts */
  .experts-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.6rem;
  }

  .experts-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .expert-chip {
    font-size: 0.74rem;
    padding: 0.22rem 0.65rem;
    background: rgba(201,150,58,0.08);
    color: var(--dark);
    border: 1px solid rgba(201,150,58,0.2);
    border-radius: 50px;
    font-weight: 500;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--teal), var(--dark));
    margin: 0 4rem;
    border-radius: 24px;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 12px 50px rgba(28,43,40,0.25);
    margin-bottom: 5rem;
  }

  .stat {
    text-align: center;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.12);
  }

  /* ── FOOTER ── */
  footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 4rem;
    border-top: 1px solid rgba(42,122,111,0.1);
    font-size: 0.8rem;
    color: var(--muted);
  }

  footer strong { color: var(--teal); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    header { padding: 1rem 1.5rem; }
    nav { display: none; }
    .slide { padding: 0 2rem; }
    .slide-title { font-size: 2.4rem; }
    .slide-visual { display: none; }
    .slider-controls { left: 2rem; }
    .section { padding: 3rem 1.5rem; }
    .stats-bar { margin: 0 1.5rem 3rem; padding: 1.5rem; flex-wrap: wrap; gap: 1.5rem; }
    .cards-grid { grid-template-columns: 1fr; }
  }