    :root {
      --primary: #e63946;
      --primary-dark: #b0212d;
      --accent: #1d3557;
      --bg: #f5f7fb;
      --text: #222222;
      --muted: #6b7280;
      --card-bg: #ffffff;
      --border: #e5e7eb;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
      --radius-lg: 18px;
      --radius-xl: 28px;
      --radius-pill: 999px;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout */
    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* Navbar */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(245, 247, 251, 0.9);
      border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1.25rem;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: var(--accent);
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 40% 60% 45% 55%;
      background: radial-gradient(circle at 30% 20%, #ffb703, #e63946);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 0.85rem;
      box-shadow: 0 10px 25px rgba(220, 38, 38, 0.45);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: var(--muted);
      font-weight: 500;
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
      transition: all 0.18s ease;
    }

    .nav-links a:hover {
      color: var(--accent);
      background: rgba(209, 213, 219, 0.4);
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1.4rem;
      border-radius: var(--radius-pill);
      background: linear-gradient(135deg, var(--primary), #ff7b54);
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(239, 68, 68, 0.45);
      transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
      white-space: nowrap;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(220, 38, 38, 0.55);
      opacity: 0.96;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1.2rem;
      border-radius: var(--radius-pill);
      background: transparent;
      border: 1px solid rgba(148, 163, 184, 0.8);
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.16s ease;
      white-space: nowrap;
    }

    .btn-outline:hover {
      background: #ffffff;
      border-color: var(--accent);
    }

    /* Hero */
    .hero {
      padding: 3.5rem 0 2.75rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .eyebrow {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--primary-dark);
      font-weight: 600;
      margin-bottom: 0.7rem;
    }

    .hero-title {
      font-size: clamp(1.95rem, 3vw, 2.55rem);
      line-height: 1.2;
      letter-spacing: -0.04em;
      margin-bottom: 0.75rem;
      color: var(--accent);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--muted);
      margin-bottom: 1.4rem;
      max-width: 32rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.6rem;
    }

    .badge {
      font-size: 0.75rem;
      padding: 0.24rem 0.65rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.9);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      margin-bottom: 1.2rem;
    }

    .hero-footnote {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .hero-card {
      background: radial-gradient(circle at 0% 0%, #ffecd5, #ffffff);
      border-radius: var(--radius-xl);
      padding: 1.7rem 1.6rem;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at 0% 100%, rgba(248, 113, 113, 0.14), transparent 70%);
      opacity: 0.9;
      pointer-events: none;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.06);
      font-size: 0.7rem;
      color: var(--muted);
      margin-bottom: 0.85rem;
    }

    .hero-metric-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 1.1rem;
    }

    .metric {
      flex: 1;
    }

    .metric-title {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 0.25rem;
    }

    .metric-value {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--accent);
    }

    .metric-note {
      font-size: 0.72rem;
      color: var(--muted);
    }

    .flag-strip {
      margin-top: 1.4rem;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
      position: relative;
      overflow: hidden;
    }

    .flag-strip::after {
      content: "India-Focused, Pan-India Experience";
      position: absolute;
      inset: auto 0 0;
      top: 140%;
      text-align: center;
      font-size: 0.7rem;
      color: var(--muted);
    }

    /* Sections */
    section {
      padding: 2.4rem 0;
    }

    .section-header {
      margin-bottom: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--primary-dark);
      font-weight: 600;
    }

    .section-title {
      font-size: 1.45rem;
      color: var(--accent);
      letter-spacing: -0.02em;
    }

    .section-desc {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 34rem;
    }

    /* Services */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 1.1rem 1.1rem 1.2rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 10px 24px rgba(148, 163, 184, 0.22);
    }

    .card-title {
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
      color: var(--accent);
    }

    .card-subtitle {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 0.35rem;
    }

    .card-body {
      font-size: 0.86rem;
      color: var(--muted);
    }

    .card-list {
      margin-top: 0.4rem;
      padding-left: 1rem;
      font-size: 0.84rem;
      color: var(--muted);
    }

    .card-list li {
      margin-bottom: 0.22rem;
    }

    /* Fee table */
    .table-wrapper {
      margin-top: 0.75rem;
      overflow-x: auto;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: #ffffff;
      box-shadow: 0 8px 22px rgba(148, 163, 184, 0.18);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 620px;
      font-size: 0.86rem;
    }

    thead {
      background: rgba(15, 23, 42, 0.9);
      color: #ffffff;
    }

    th,
    td {
      padding: 0.7rem 0.9rem;
      text-align: left;
      border-bottom: 1px solid #e5e7eb;
    }

    th:first-child,
    td:first-child {
      border-top-left-radius: var(--radius-lg);
    }

    th:last-child,
    td:last-child {
      border-top-right-radius: var(--radius-lg);
    }

    tbody tr:nth-child(even) {
      background: #f9fafb;
    }

    .table-note {
      margin-top: 0.6rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .pill-note {
      display: inline-flex;
      align-items: center;
      padding: 0.2rem 0.6rem;
      font-size: 0.75rem;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.06);
      color: var(--accent);
      margin-right: 0.3rem;
      margin-bottom: 0.2rem;
    }

    /* Experience */
    .experience-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.4rem;
    }

    .timeline {
      border-left: 2px solid rgba(148, 163, 184, 0.7);
      padding-left: 1rem;
    }

    .timeline-item {
      margin-bottom: 1.1rem;
      position: relative;
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: -1.18rem;
      top: 0.25rem;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: #ffffff;
      border: 2px solid var(--primary);
    }

    .timeline-title {
      font-size: 0.93rem;
      font-weight: 600;
      color: var(--accent);
    }

    .timeline-meta {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 0.25rem;
    }

    .timeline-body {
      font-size: 0.84rem;
      color: var(--muted);
    }

    .strategist-list {
      font-size: 0.84rem;
      color: var(--muted);
      padding-left: 1rem;
      margin-top: 0.25rem;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 1.5rem;
      align-items: flex-start;
    }

    .contact-card {
      background: #ffffff;
      border-radius: var(--radius-xl);
      padding: 1.4rem 1.3rem 1.5rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(226, 232, 240, 0.9);
    }

    .contact-card h3 {
      font-size: 1rem;
      margin-bottom: 0.4rem;
      color: var(--accent);
    }

    .contact-card p {
      font-size: 0.86rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .contact-info-item {
      font-size: 0.86rem;
      margin-bottom: 0.4rem;
      color: var(--accent);
    }

    .contact-info-item span {
      color: var(--muted);
      font-size: 0.8rem;
      display: inline-block;
      width: 70px;
    }

    form {
      display: grid;
      gap: 0.6rem;
    }

    label {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 0.1rem;
      display: block;
    }

    input,
    textarea,
    select {
      width: 100%;
      padding: 0.55rem 0.7rem;
      border-radius: 10px;
      border: 1px solid rgba(209, 213, 219, 0.9);
      font-size: 0.86rem;
      font-family: inherit;
      outline: none;
      background: #f9fafb;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.3);
      background: #ffffff;
    }

    textarea {
      min-height: 110px;
      resize: vertical;
    }

    .form-note {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: -0.1rem;
      margin-bottom: 0.4rem;
    }

    /* Footer */
    footer {
      padding: 1.4rem 0 1.6rem;
      border-top: 1px solid rgba(209, 213, 219, 0.7);
      margin-top: 1.4rem;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.6rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .experience-grid,
      .contact-grid,
      .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }

      .navbar-inner {
        flex-wrap: wrap;
        gap: 0.6rem;
      }

      .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .hero {
        padding-top: 2.4rem;
      }
    }

    @media (max-width: 640px) {
      .hero-card {
        margin-top: 0.5rem;
      }

      table {
        font-size: 0.8rem;
      }
    }
