@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;600&family=Nunito+Sans:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --primary:       #4A7BC4;
  --primary-light: #8BA7CC;
  --primary-dark:  #3A6BAF;
  --primary-glow:  rgba(74, 123, 196, 0.12);
  --bg:            #F8FAFC;
  --bg-alt:        #EEF2F8;
  --text:          #1C2333;
  --text-muted:    #6B7A99;
  --white:         #FFFFFF;
  --border:        #DDE4EF;
  --shadow:        0 4px 24px rgba(74, 123, 196, 0.07);
  --shadow-hover:  0 10px 36px rgba(74, 123, 196, 0.16);
  --radius:        14px;
  --radius-sm:     8px;
  --ease:          all 0.25s ease;
}

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

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(74, 123, 196, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 80px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--text-muted);
  transition: var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 0.9rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  border: none;
  transition: var(--ease);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(74, 123, 196, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary-glow);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* ─── Tags ───────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.08em;
}
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ─── Grids ──────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ─── Divider line ───────────────────────────────────────────── */
.rule {
  width: 48px; height: 2px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, #ECF2FB 0%, #F8FAFC 55%, #EEF2F8 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.18;
}
.hero-decoration {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.hero-decoration img { width: min(480px, 45vw); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeUp 0.7s ease both;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 1.5px;
  background: var(--primary);
}
.hero-eyebrow span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.75rem);
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Services */
.services { background: var(--white); }

.service-card { padding: 2rem; }

.service-icon {
  width: 50px; height: 50px;
  background: var(--primary-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Portfolio teaser */
.portfolio-teaser { background: var(--bg); }

.portfolio-preview-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.portfolio-preview-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.ppc-visual {
  background: linear-gradient(155deg, var(--primary) 0%, #2A5A9F 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.ppc-letter {
  font-family: 'Raleway', sans-serif;
  font-size: 9rem;
  font-weight: 100;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.ppc-body {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.ppc-body .client {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.ppc-body h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin: 0.4rem 0 0.75rem;
}
.ppc-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.ppc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

/* Products teaser */
.products-teaser { background: var(--white); }

.product-teaser-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
}

.pti-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pti-icon svg {
  width: 30px; height: 30px;
  stroke: white; fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pti-content { flex: 1; }
.pti-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.pti-content h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pti-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 1.5rem;
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #2A5A9F 100%);
  padding: 90px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.85rem;
}
.cta-strip p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.25rem;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info-col h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 0.85rem;
}
.contact-info-col > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.cd-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--primary-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-icon svg {
  width: 17px; height: 17px;
  stroke: var(--primary); fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cd-text .cd-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.cd-text a, .cd-text span {
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
}
.cd-text a:hover { color: var(--primary); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-form { width: 100%; justify-content: center; padding: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--primary);
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.08em;
}

/* Footer */
footer {
  background: var(--text);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 1.1rem;
}
.footer-brand p {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.845rem;
  transition: var(--ease);
}
.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE SHARED
═══════════════════════════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(140deg, #EEF2F8 0%, #F8FAFC 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.page-hero p  { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.8; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */

.about-story { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-avatar {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--primary) 0%, #2A5A9F 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-logo {
  width: 68%;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
}


.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.about-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

/* Values */
.values { background: var(--bg); }

.value-card { padding: 2.5rem 2rem; text-align: center; }
.value-num {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 100;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.1rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.65rem; }
.value-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   WORK PAGE
═══════════════════════════════════════════════════════════════ */

.work-section { background: var(--bg); }
.work-list { display: flex; flex-direction: column; gap: 2rem; }

.work-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--ease);
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.wc-visual {
  background: linear-gradient(160deg, var(--primary) 0%, #2A5A9F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.wc-initial {
  font-family: 'Raleway', sans-serif;
  font-size: 5.5rem;
  font-weight: 100;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}

.wc-body { padding: 2.5rem; }
.wc-client {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.wc-body h2 { font-size: 1.75rem; color: var(--text); margin-bottom: 0.65rem; }
.wc-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.feature-bullets li {
  font-size: 0.845rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.feature-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 0.48em;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════════════════════════════ */

.product-page-hero {
  background: linear-gradient(140deg, var(--primary) 0%, #2A5A9F 100%);
  padding: 160px 0 90px;
  text-align: center;
  color: var(--white);
}
.product-page-hero .pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.88);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.product-page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.6rem); color: var(--white); margin-bottom: 0.75rem; }
.product-page-hero p  { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.8; }

/* App icon in product hero */
.product-app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Image-based product teaser icon (overrides SVG variant) */
.pti-icon--img {
  background: none;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
}
.pti-icon--img img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
}

.playstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--text);
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--ease);
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
}
.playstore-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.playstore-btn svg { width: 20px; height: 20px; }

/* Features grid */
.features-section { background: var(--white); }
.feature-card { padding: 1.75rem 2rem; }
.fc-icon {
  width: 46px; height: 46px;
  background: var(--primary-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.fc-icon svg {
  width: 22px; height: 22px;
  stroke: var(--primary); fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.55rem; }
.feature-card p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; }

/* Pricing */
.pricing-section { background: var(--bg); }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 36px rgba(74, 123, 196, 0.22);
}

.pc-header { padding: 2rem; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pc-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2A5A9F 100%);
  border-bottom-color: transparent;
}
.pc-header h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.pricing-card.featured .pc-header h3 { color: var(--white); }
.pc-price {
  font-family: 'Raleway', sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.pricing-card.featured .pc-price { color: var(--white); }
.pc-price-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.pricing-card.featured .pc-price-sub { color: rgba(255,255,255,0.65); }

.pc-features { padding: 1.75rem 2rem; }
.pc-features ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.check-dot {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-dot svg {
  width: 9px; height: 9px;
  stroke: white; fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }

  .work-card { grid-template-columns: 1fr; }
  .wc-visual { min-height: 180px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 96px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5%;
    gap: 1.5rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }

  .section-header { flex-direction: column; align-items: flex-start; }

  .portfolio-preview-card { grid-template-columns: 1fr; }
  .ppc-visual { min-height: 160px; }

  .product-teaser-card { flex-direction: column; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .feature-bullets { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
