/* PR STUDIO — Shared Stylesheet */

/* ── Shared / Home ──────────────────────────────── */
/* ─── Tokens ─────────────────────────────────────────────── */
  :root {
    --bg:          #0e0f10;
    --fg:          #F0F0F0;
    --muted:       #888888;
    --border:      #282828;
    --nav-bg:      #0C0C0C;
    --nav-fg:      #FFFFFF;
    --nav-muted:   rgba(255,255,255,0.55);
    --cta-bg:      #0C0C0C;
    --cta-fg:      #FFFFFF;
    --card-bg:     #181818;
    --radius:      6px;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --bg:        #0e0f10;
      --fg:        #F0F0F0;
      --muted:     #888888;
      --border:    #282828;
      --card-bg:   #181818;
    }
  }

  :root[data-theme="light"] {
    --bg:          #FFFFFF;
    --fg:          #0C0C0C;
    --muted:       #767676;
    --border:      #E2E2E2;
    --card-bg:     #F7F7F7;
  }

  :root[data-theme="dark"] {
    --bg:        #0e0f10;
    --fg:        #F0F0F0;
    --muted:     #888888;
    --border:    #282828;
    --card-bg:   #181818;
  }

  /* ─── Reset ──────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── Nav ────────────────────────────────────────────────── */
  nav {
    background: var(--nav-bg);
    padding: 0 48px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-logo {
    color: var(--nav-fg);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .nav-logo span {
    font-weight: 300;
    letter-spacing: 0.04em;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: var(--nav-muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--nav-fg);
  }

  .nav-cta {
    background: var(--nav-fg);
    color: var(--nav-bg);
    border: none;
    padding: 9px 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .nav-cta:hover { opacity: 0.85; }

  /* ─── Hero ───────────────────────────────────────────────── */
  .hero {
    padding: 100px 48px 110px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
  }

  .hero-sub {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 40px;
    text-wrap: balance;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--fg);
    color: var(--bg);
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .btn-primary:hover { opacity: 0.8; }

  .btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1.5px solid var(--border);
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-outline:hover {
    border-color: var(--fg);
  }

  /* ─── Section Shell ──────────────────────────────────────── */
  section {
    padding: 88px 48px;
    border-top: 1px solid var(--border);
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 48px;
  }

  .section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-wrap: balance;
  }

  .section-title em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
  }

  /* ─── Services ───────────────────────────────────────────── */
  .services-header {
    margin-bottom: 56px;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service-row {
    display: grid;
    grid-template-columns: 36px 1fr 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid var(--border);
  }

  .service-row:last-child {
    border-bottom: 1px solid var(--border);
  }

  .service-num {
    font-size: 12px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    padding-top: 3px;
  }

  .service-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 380px;
  }

  /* ─── Reviews ────────────────────────────────────────────── */
  .reviews-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
  }

  .reviews-left .section-title {
    margin-bottom: 0;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .review-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .review-logo {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.5;
  }

  .review-logo .mark {
    font-size: 14px;
    margin-right: 2px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.72;
    color: var(--fg);
    flex: 1;
  }

  .review-author {
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }

  .review-author-name {
    font-size: 13px;
    font-weight: 600;
  }

  .review-author-title {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
  }

  /* ─── CTA ────────────────────────────────────────────────── */
  .cta-section {
    background: var(--cta-bg);
    border-top: none;
    margin: 0 48px 80px;
    border-radius: 14px;
    padding: 72px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .cta-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--cta-fg);
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-wrap: balance;
  }

  .cta-title em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
  }

  .btn-cta {
    background: transparent;
    color: var(--cta-fg);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 13px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-cta:hover {
    border-color: var(--cta-fg);
    background: rgba(255,255,255,0.07);
  }

  /* ─── Social Links ───────────────────────────────────────────── */
  .social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
  }

  .social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .social-link:hover {
    transform: translateY(-2px);
  }

  .social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  /* ─── Projects Section ───────────────────────────────────────── */
  .projects-container {
    padding: 0 48px 88px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .tabs-list {
    display: flex;
    gap: 12px;
    list-style: none;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
.tab-btn {
    background: transparent;
    color: var(--muted);
    border: 1.5px solid var(--border);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .tab-btn:hover {
    border-color: var(--fg);
    color: var(--fg);
  }

  .tab-btn.active {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 24px;
  }

  .project-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .project-card:hover {
    transform: translateY(-4px);
  }

  .project-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--muted);
    font-weight: 300;
  }

  .project-video {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    background: #000;
    overflow: hidden;
  }

  .project-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }


  .project-instagram {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    min-height: 400px;
    overflow: hidden;
  }

  .project-instagram blockquote {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
  }

  .project-instagram iframe {
    width: 100% !important;
  }

  .project-instagram-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
  }

  .project-instagram-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
  }

  .project-instagram-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .project-thumb {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 0 !important;
    background: #000;
  }

  .project-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .project-thumb:hover .play-overlay {
    opacity: 1;
  }

  .play-overlay::before {
    content: '';
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .play-overlay::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid #000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  .insta-thumbnail-overlay {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    z-index: 2;
    padding-bottom: 16px;
    position: relative;
  }

  /* Website scroll-on-hover card */
  .web-thumb {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #111;
  }
  .web-thumb img {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: top 4s ease-in-out;
  }
  .web-thumb:hover img {
    top: calc(-100% + 260px);
  }
  .web-thumb .web-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .web-thumb:hover .web-overlay {
    background: rgba(0,0,0,0.18);
  }
  .web-thumb .web-overlay span {
    opacity: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: rgba(0,0,0,0.55);
    padding: 8px 18px;
    border-radius: 20px;
    transition: opacity 0.3s;
  }
  .web-thumb:hover .web-overlay span { opacity: 1; }

  /* Website lightbox */
  #web-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  #web-lightbox.open { display: flex; }
  #web-lightbox .wl-inner {
    position: relative;
    max-width: 88vw;
    max-height: 90vh;
    overflow: auto;
    border-radius: 10px;
  }
  #web-lightbox img {
    display: block;
    width: 100%;
    border-radius: 10px;
    cursor: zoom-in;
  }
  #web-lightbox img.zoomed {
    width: 160%;
    cursor: zoom-out;
  }
  #wl-close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
  }

  .project-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .project-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .project-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .projects-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .projects-container {
      padding: 0 24px 48px;
    }
  }

  /* ─── Responsive ─────────────────────────────────────────── */
  @media (max-width: 768px) {
    nav { padding: 0 24px; }

    .hero { padding: 64px 24px 72px; }

    section { padding: 64px 24px; }

    .service-row {
      grid-template-columns: 28px 1fr;
      gap: 16px;
    }

    .service-desc { grid-column: 2; }

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

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

    .cta-section {
      margin: 0 24px 48px;
      padding: 48px 32px;
      flex-direction: column;
      align-items: flex-start;
      border-radius: 10px;
    }

    .nav-links { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; }
  }


/* ── Ai Chatbot ──────────────────────────────── */

nav {
    background: var(--nav-bg);
    padding: 0 48px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }
.nav-links a:hover { color: var(--nav-fg); }
.content { max-width: 900px; margin: 0 auto; padding: 80px 48px; }
h1 { font-size: 48px; font-weight: 700; margin-bottom: 24px; line-height: 1.1; }
h1 em { font-style: italic; font-family: Georgia, "Times New Roman", serif; }
.meta {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.section { margin-bottom: 64px; }
.section h2 { font-size: 24px; font-weight: 600; margin-bottom: 20px; }
.section h2 em { font-style: italic; font-family: Georgia, "Times New Roman", serif; }
.section p { margin-bottom: 16px; color: var(--fg); line-height: 1.8; }
.section .section ul { list-style: none; padding: 0; }
.section ul li { padding-left: 24px; position: relative; margin-bottom: 12px; }
.section ul li::before { content: '→'; position: absolute; left: 0; color: var(--muted); }
.tabs-list li { padding-left: 0; margin-bottom: 0; }
.tabs-list li::before { display: none; }
.back-link {
    display: inline-block;
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 48px;
    transition: color 0.2s;
  }
.back-link:hover { color: var(--fg); }
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
  }
.flow-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
.flow-step:last-child { border-bottom: none; }
.step-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.08em;
    min-width: 28px;
    padding-top: 2px;
  }
.step-content h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.chat-preview {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 28px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
.chat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
.chat-bubble {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 80%;
  }
.chat-bubble.bot { align-self: flex-start; }
.chat-bubble.user { align-self: flex-end; }
.bubble-text {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
  }
.bot .bubble-text {
    background: var(--border);
    color: var(--fg);
    border-bottom-left-radius: 4px;
  }
.user .bubble-text {
    background: var(--fg);
    color: var(--bg);
    border-bottom-right-radius: 4px;
  }
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
.screenshot-box {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
    overflow: hidden;
  }
.screenshot-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.cta-section { background:#0C0C0C; color:#FFFFFF; margin:0 auto 80px; max-width:900px; border-radius:14px; padding:88px 64px; text-align:center; }
.social-links { display:flex; gap:20px; justify-content:center; margin-top:32px; }

/* ── Email Automation ──────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
.stat-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
.stat-number {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
  }
.stat-label {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
.screenshot-placeholder {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 48px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 24px;
  }

/* ── Social Media Design ──────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
.service-chip {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fg);
  }
.service-chip span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 4px;
    letter-spacing: 0.02em;
  }
.agent-card {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 20px 24px;
    margin-bottom: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
.agent-icon {
    font-size: 22px;
    min-width: 36px;
    padding-top: 2px;
  }
.agent-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--fg);
  }
.agent-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }
.agent-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 8px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

/* ── Services ──────────────────────────────── */
/* ─── Page Header ────────────────────────────────────────── */
  .page-header {
    padding: 80px 48px 60px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
  }
.header-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 24px;
    text-wrap: balance;
  }
.header-title em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
  }
.header-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
  }
/* ─── Services Section ───────────────────────────────────── */
  .services-section {
    padding: 60px 48px 100px;
    max-width: 1000px;
    margin: 0 auto;
  }
.service-item {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
  }
.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
.service-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
  }
.service-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--fg);
    min-width: 40px;
    text-align: center;
  }
.service-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
.service-title em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
  }
.service-description {
    margin-left: 64px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--fg);
    margin-bottom: 24px;
  }
.service-features {
    margin-left: 64px;
  }
.features-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    list-style: none;
  }
.feature-item {
    font-size: 14px;
    color: var(--fg);
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
  }
.feature-item::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--muted);
    font-weight: 600;
  }
.service-benefits {
    margin-left: 64px;
    margin-top: 28px;
  }
.benefits-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    list-style: none;
  }
.benefit-item {
    background: var(--card-bg);
    padding: 16px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.6;
    color: var(--fg);
  }

/* ── About ──────────────────────────────── */
.about-section {
    margin-bottom: 64px;
  }
.about-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
  }
.about-section h2 em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
  }
.about-section p {
    margin-bottom: 16px;
    color: var(--fg);
    line-height: 1.8;
  }
/* Gallery Section */
  .gallery-section {
    margin-bottom: 64px;
  }
.gallery-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
  }
.gallery-section h2 em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
  }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
.gallery-item {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
.gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { background: var(--card-bg); }
.gallery-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 540px;
  }
/* Services Section */
  .services-section {
    margin-top: 0;
    padding-top: 0;
  }
.services-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 64px;
    text-align: center;
  }
.services-section h2 em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
  }

/* ── Website Development ──────────────────────────────── */
.meta span {
    display: flex;
    align-items: center;
    gap: 8px;
  }

/* ── Jignesh Vashi Event ──────────────────────────────── */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
.result-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
.result-number {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
  }
.result-label {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
