/* ============================================================
   THE DIGITAL SMARTS — Modern Agency Stylesheet
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fafafa;
  --ink: #0a0a0a;
  --mute: #7a7a7a;
  --line: #e6e6e6;
  --accent: #ff4d00;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

/* ============ REVEAL — NO ANIMATION, ALWAYS VISIBLE ============ */
.reveal {
  opacity: 1;
  transform: none;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom-color: var(--line);
}
.logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.nav a:hover { opacity: 0.5; }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  opacity: 1;
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* ============ SHARED ============ */
.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 32px;
}
.stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 180px 48px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-inner { max-width: 1300px; }
.hero-title {
  font-size: clamp(42px, 8vw, 130px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 44px;
}
.hero-text {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
  color: var(--mute);
  max-width: 620px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
.hero-meta {
  display: flex;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-item strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-meta-item span {
  font-size: 14px;
  color: var(--mute);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 20px 44px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.35s, color 0.35s, transform 0.35s;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 100px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 20px 0; }
.stat-icon {
  width: 38px;
  height: 38px;
  color: var(--ink);
  margin-bottom: 26px;
}
.stat h3 {
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat p {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============ INTRO ============ */
.intro {
  padding: 160px 48px;
  border-top: 1px solid var(--line);
}
.intro-title {
  font-size: clamp(26px, 3.4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 1150px;
  margin-bottom: 40px;
}
.intro-text {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
  color: var(--mute);
  max-width: 720px;
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--ink);
  color: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.marquee-track span:nth-child(even) {
  color: var(--accent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SERVICES ============ */
.services {
  padding: 160px 48px;
  border-top: 1px solid var(--line);
}
.services-title {
  font-size: clamp(30px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}
.services-lead {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--mute);
  max-width: 620px;
  margin-bottom: 80px;
  line-height: 1.6;
}
.service-list { display: flex; flex-direction: column; }
.service {
  display: grid;
  grid-template-columns: 60px 1.2fr 1.3fr;
  gap: 40px;
  align-items: start;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service-num {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--mute);
  padding-top: 12px;
}
.service-name {
  font-size: clamp(22px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s;
}
.service-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 480px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s;
}
.service:hover .service-name {
  transform: translateX(14px);
  color: var(--accent);
}
.service:hover .service-desc {
  transform: translateX(14px);
  color: var(--ink);
}

/* ============ PROCESS ============ */
.process {
  padding: 160px 48px;
  border-top: 1px solid var(--line);
}
.process-title {
  font-size: clamp(30px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}
.process-lead {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--mute);
  max-width: 620px;
  margin-bottom: 70px;
  line-height: 1.6;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  transition: border-color 0.4s;
}
.process-step:hover { border-top-color: var(--ink); }
.process-num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--mute);
  display: block;
  margin-bottom: 22px;
}
.process-step h4 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.process-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
}

/* ============ WORK / PORTFOLIO ============ */
.work {
  padding: 160px 48px;
  border-top: 1px solid var(--line);
}
.work-title {
  font-size: clamp(30px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}
.work-lead {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--mute);
  max-width: 620px;
  margin-bottom: 80px;
  line-height: 1.6;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.work-card {
  position: relative;
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.4s, color 0.4s;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.work-card:hover {
  background: var(--ink);
  color: var(--bg);
}
.work-num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--mute);
  margin-bottom: 30px;
  transition: color 0.4s;
}
.work-card:hover .work-num { color: #666; }
.work-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.work-tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 0.4s;
}
.work-card:hover .work-tag { color: #999; }
.work-arrow {
  position: absolute;
  top: 44px;
  right: 32px;
  font-size: 20px;
  color: var(--mute);
  transition: color 0.4s, transform 0.4s;
}
.work-card:hover .work-arrow {
  color: var(--accent);
  transform: translate(4px, -4px);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 160px 48px;
  border-top: 1px solid var(--line);
}
.testimonials-title {
  font-size: clamp(30px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}
.testimonials-lead {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--mute);
  max-width: 620px;
  margin-bottom: 80px;
  line-height: 1.6;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.testimonial {
  padding: 46px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.4s;
}
.testimonial:hover { background: #fff; }
.testimonial p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.testimonial p::before {
  content: "\201C";
  display: block;
  font-size: 44px;
  line-height: 0.6;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.testimonial-author {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

/* ============ FAQ ============ */
.faq {
  padding: 160px 48px;
  border-top: 1px solid var(--line);
}
.faq-title {
  font-size: clamp(30px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 70px;
  max-width: 900px;
}
.faq-list {
  max-width: 950px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -4px;
  font-size: 26px;
  font-weight: 300;
  color: var(--mute);
  transition: transform 0.35s, color 0.35s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item[open] summary { color: var(--accent); }
.faq-item p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mute);
  max-width: 800px;
}

/* ============ CTA ============ */
.cta {
  padding: 180px 48px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,77,0,0.06), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(46px, 8vw, 140px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.cta-text {
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--mute);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  padding: 100px 48px 40px;
  border-top: 1px solid var(--line);
}
.footer-logo {
  font-size: clamp(34px, 5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.footer-tag {
  font-size: 16px;
  color: var(--mute);
  max-width: 420px;
  margin-bottom: 80px;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links { display: flex; gap: 26px; }
.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .service {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }
  .service-desc {
    grid-column: 2;
    padding-top: 8px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .header { padding: 16px 20px; }
  .header.scrolled { padding: 12px 20px; }
  .logo { font-size: 12px; letter-spacing: 1.5px; }

  .nav {
    display: none;
    position: fixed;
    top: 60px; left: 16px; right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { font-size: 16px; width: 100%; }
  .nav-cta { padding: 12px 22px; text-align: center; width: 100%; }
  .menu-btn { display: inline-block; }

  .hero, .intro, .services, .process, .work,
  .testimonials, .faq, .cta, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 70px;
  }
  .hero-title { font-size: clamp(34px, 9vw, 60px); margin-bottom: 32px; }
  .hero-text { font-size: 16px; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 60px; }
  .hero-actions .btn { text-align: center; }
  .hero-meta { gap: 30px; padding-top: 24px; }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 20px;
    gap: 16px;
  }
  .stat { padding: 12px 0; }
  .stat h3 { font-size: 34px; }
  .stat-icon { width: 30px; height: 30px; margin-bottom: 16px; }

  .intro, .services, .process, .work, .testimonials, .faq, .cta {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .intro-title { font-size: clamp(22px, 6vw, 34px); }

  .marquee-track { font-size: 20px; gap: 22px; }

  .services-title,
  .process-title,
  .work-title,
  .testimonials-title,
  .faq-title {
    font-size: clamp(24px, 7vw, 38px);
    margin-bottom: 16px;
  }
  .services-lead,
  .process-lead,
  .work-lead,
  .testimonials-lead {
    margin-bottom: 50px;
  }

  .service {
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 32px 0;
  }
  .service-num { font-size: 11px; padding-top: 6px; }
  .service-name { font-size: clamp(20px, 5.5vw, 28px); }
  .service-desc { font-size: 14px; }
  .service:hover .service-name,
  .service:hover .service-desc { transform: none; }

  .process-grid { grid-template-columns: 1fr; gap: 32px; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card { padding: 34px 24px; min-height: 180px; }
  .work-arrow { top: 34px; right: 24px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 34px 26px; }

  .faq-item summary { font-size: 16px; }
  .faq-item p { font-size: 15px; }

  .cta { padding-top: 100px; padding-bottom: 100px; }
  .cta-title { font-size: clamp(34px, 10vw, 58px); margin-bottom: 24px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; }

  .footer { padding-top: 70px; padding-bottom: 30px; }
  .footer-logo { font-size: clamp(28px, 7vw, 46px); }
  .footer-tag { font-size: 15px; margin-bottom: 50px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 30px; }
  .cta-title { font-size: 32px; }
  .stats { grid-template-columns: 1fr; }
}

/*contact us page starting*/
/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ============ PAGE HEADER ============ */
.page-head {
  padding: 200px 48px 100px;
  border-bottom: 1px solid var(--line);
}
.page-title {
  font-size: clamp(42px, 7.5vw, 120px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.page-lead {
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--mute);
  max-width: 620px;
  line-height: 1.6;
}

/* ============ CONTACT INFO CARDS ============ */
.contact-info {
  padding: 100px 48px;
  border-bottom: 1px solid var(--line);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.info-card {
  padding: 50px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.info-card:hover { background: #fff; }
.info-icon {
  width: 36px;
  height: 36px;
  color: var(--ink);
  margin-bottom: 28px;
}
.info-icon svg { width: 100%; height: 100%; }
.info-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.info-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}
.info-card p a { transition: color 0.3s; }
.info-card p a:hover { color: var(--accent); }
.info-mute {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============ FORM + MAP ============ */
.contact-main {
  padding: 120px 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* FORM */
.form-title {
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 50px;
  max-width: 500px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

/* Inputs — underline style */
.form-field input,
.form-field textarea,
.form-field select {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--ink);
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
  padding-top: 10px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #bbb;
}

/* SELECT — modern styling with padding */
.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 14px 40px 14px 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}
.form-field select:invalid,
.form-field select option[value=""] {
  color: #bbb;
}
.form-field select option {
  color: var(--ink);
  background: #fff;
  padding: 12px;
  font-size: 15px;
}

/* Submit button */
.btn-submit {
  margin-top: 12px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-submit svg { flex-shrink: 0; }

/* ============ MAP ============ */
.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f0f0f0;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-whatsapp {
  border-color: #25d366;
  color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   NAV DROPDOWN — "Our Packages"
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-drop-toggle { cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 1200;
}
.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-drop-menu a:hover { background: var(--ink); color: var(--bg); opacity: 1; }

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown { width: 100%; }
  .nav-drop-toggle { width: 100%; font-size: 16px; }
  .nav-drop-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 6px 0 0 14px;
    min-width: 0;
    display: none;
  }
  .nav-dropdown.open .nav-drop-menu { display: block; }
  .nav-drop-menu a { font-size: 14px; padding: 9px 12px; }
}

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.pkg-hero { padding: 200px 48px 100px; border-bottom: 1px solid var(--line); }
.pkg-hero .page-title { font-size: clamp(40px, 7vw, 110px); }
.pkg-hero .page-lead { max-width: 680px; }

/* Definition / Kya hai */
.pkg-def { padding: 140px 48px; border-bottom: 1px solid var(--line); }
.pkg-def-title {
  font-size: clamp(28px, 3.6vw, 58px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 1000px;
  margin-bottom: 40px;
}
.pkg-def-text {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.8;
  color: var(--mute);
  max-width: 820px;
  margin-bottom: 24px;
}
.pkg-def-text strong { color: var(--ink); font-weight: 500; }

/* Why important */
.pkg-why { padding: 140px 48px; border-bottom: 1px solid var(--line); }
.pkg-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 70px;
}
.pkg-why-card {
  padding: 46px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.pkg-why-card:hover { background: #fff; }
.pkg-why-num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.pkg-why-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pkg-why-card p { font-size: 15px; line-height: 1.65; color: var(--mute); }

/* Types of SEO */
.pkg-types { padding: 140px 48px; border-bottom: 1px solid var(--line); }
.pkg-types-title {
  font-size: clamp(28px, 3.6vw, 58px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 70px;
}
.pkg-type-list { display: flex; flex-direction: column; }
.pkg-type-item {
  display: grid;
  grid-template-columns: 60px 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.pkg-type-item:last-child { border-bottom: 1px solid var(--line); }
.pkg-type-num {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--mute);
  padding-top: 10px;
}
.pkg-type-name {
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.pkg-type-desc { font-size: 15px; line-height: 1.7; color: var(--mute); max-width: 520px; }
.pkg-type-desc strong { color: var(--ink); font-weight: 500; }

/* Pricing table */
.pkg-pricing { padding: 140px 48px; border-bottom: 1px solid var(--line); }
.pkg-pricing-title {
  font-size: clamp(28px, 3.6vw, 58px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 24px;
}
.pkg-pricing-lead {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--mute);
  max-width: 620px;
  margin-bottom: 80px;
  line-height: 1.6;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pkg-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 36px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  border-color: #d8d8d8;
}
.pkg-card.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
  transform: scale(1.02);
}
.pkg-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-name {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 22px;
}
.pkg-card.featured .pkg-name { color: #999; }
.pkg-price {
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.pkg-price-usd {
  font-size: 15px;
  color: var(--mute);
  margin-bottom: 14px;
  font-weight: 400;
}
.pkg-card.featured .pkg-price-usd { color: #999; }
.pkg-delivery {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.pkg-card.featured .pkg-delivery { border-bottom-color: #222; }
.pkg-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  margin-bottom: 28px;
}
.pkg-card.featured .pkg-desc { color: #bbb; }
.pkg-features { list-style: none; margin-bottom: 36px; flex-grow: 1; }
.pkg-features li {
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pkg-card.featured .pkg-features li { color: #ddd; border-bottom-color: rgba(255,255,255,0.06); }
.pkg-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}
.pkg-features li.muted { color: var(--mute); }
.pkg-features li.muted::before { content: "—"; color: #ccc; }
.pkg-cta {
  display: block;
  text-align: center;
  padding: 18px 32px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s;
}
.pkg-cta:hover { background: var(--ink); color: var(--bg); }
.pkg-card.featured .pkg-cta { border-color: var(--accent); background: var(--accent); color: #fff; }
.pkg-card.featured .pkg-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Add-ons / notes */
.pkg-note {
  margin-top: 50px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f4f4f4;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mute);
}
.pkg-note strong { color: var(--ink); font-weight: 500; }

/* FAQ inside packages */
.pkg-faq { padding: 140px 48px; border-bottom: 1px solid var(--line); }

/* Responsive */
@media (max-width: 1024px) {
  .pkg-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; gap: 34px; }
  .pkg-card.featured { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-6px); }
}
@media (max-width: 900px) {
  .pkg-type-item { grid-template-columns: 44px 1fr; gap: 18px; }
  .pkg-type-desc { grid-column: 2; padding-top: 6px; max-width: 100%; }
}
@media (max-width: 768px) {
  .pkg-hero, .pkg-def, .pkg-why, .pkg-types,
  .pkg-pricing, .pkg-faq {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pkg-hero { padding-top: 130px; padding-bottom: 60px; }
  .pkg-hero .page-title { font-size: clamp(32px, 9vw, 54px); }
  .pkg-def-title, .pkg-types-title, .pkg-pricing-title {
    font-size: clamp(22px, 6vw, 34px);
  }
  .pkg-why-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .pkg-why-card { padding: 36px 26px; }
  .pkg-type-item { padding: 32px 0; }
  .pkg-card { padding: 36px 26px; }
  .pkg-note { padding: 24px; }
}

@media (max-width: 768px) {
  .page-head,
  .contact-info,
  .contact-main {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-head {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .page-title {
    font-size: clamp(34px, 9vw, 56px);
    margin-bottom: 28px;
  }
  .page-lead { font-size: 16px; }

  .contact-info { padding-top: 60px; padding-bottom: 60px; }
  .info-card { padding: 36px 26px; }
  .info-card h3 { font-size: 20px; }

  .contact-main { padding-top: 80px; padding-bottom: 80px; }
  .form-title { font-size: clamp(22px, 6vw, 30px); margin-bottom: 36px; }

  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .contact-form { gap: 26px; }
  .form-field input,
  .form-field textarea,
  .form-field select { font-size: 16px; padding: 14px 0; }
  .form-field select { padding-right: 36px; }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .map-frame { aspect-ratio: 3 / 2; }
  .map-actions { flex-direction: column; }
  .map-actions .btn { text-align: center; justify-content: center; }
}

/*Contact us page ending*/



/*About us starting */
/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ============ PAGE HEADER ============ */
.page-head {
  padding: 200px 48px 100px;
  border-bottom: 1px solid var(--line);
}
.page-title {
  font-size: clamp(42px, 7.5vw, 120px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.page-lead {
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--mute);
  max-width: 640px;
  line-height: 1.6;
}

/* ============ ABOUT INTRO ============ */
.about-intro {
  padding: 140px 48px;
  border-bottom: 1px solid var(--line);
}
.about-intro .eyebrow { margin-bottom: 32px; }
.about-intro .intro-title {
  font-size: clamp(28px, 3.6vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 1150px;
  margin-bottom: 44px;
}
.highlight {
  color: var(--accent);
  font-weight: 500;
}
.intro-text {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
  color: var(--mute);
  max-width: 780px;
  margin-bottom: 28px;
}
.intro-text strong { color: var(--ink); font-weight: 500; }

/* ============ FOUNDER ============ */
.founder {
  padding: 140px 48px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #f4f4f4);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-name {
  font-size: clamp(38px, 5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 14px;
}
.founder-role {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 36px;
}
.founder-bio {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
  color: var(--mute);
  max-width: 620px;
  margin-bottom: 22px;
}
.founder-bio em {
  font-style: italic;
  color: var(--ink);
}
.founder-facts {
  list-style: none;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
}
.founder-facts li {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}
.founder-facts li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.founder-facts strong {
  color: var(--ink);
  font-weight: 500;
}

/* Founder visual card */
.founder-card-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.founder-avatar {
  aspect-ratio: 1 / 1;
  background: var(--ink);
  color: var(--bg);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 400;
  letter-spacing: -0.05em;
  position: relative;
  overflow: hidden;
}
.founder-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,77,0,0.18), transparent 60%);
}
.founder-quote {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.founder-quote p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 14px;
  font-style: italic;
}
.founder-quote p::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
}
.founder-quote span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

/* ============ VALUES ============ */
.values {
  padding: 140px 48px;
  border-bottom: 1px solid var(--line);
}
.values-title {
  font-size: clamp(28px, 3.6vw, 60px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 80px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-card {
  padding: 50px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.value-card:hover { background: #fff; }
.value-num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--mute);
  display: block;
  margin-bottom: 22px;
}
.value-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.value-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 420px;
}

/* ============ TIMELINE ============ */
.timeline {
  padding: 140px 48px;
  border-bottom: 1px solid var(--line);
}
.timeline-title {
  font-size: clamp(28px, 3.6vw, 60px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 80px;
}
.timeline-list {
  display: flex;
  flex-direction: column;
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-item:hover { padding-left: 20px; }
.timeline-year {
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.timeline-content h4 {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 650px;
}

/* ============ WHY CHOOSE US ============ */
.why {
  padding: 140px 48px;
  border-bottom: 1px solid var(--line);
}
.why-title {
  font-size: clamp(28px, 3.6vw, 60px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 80px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-card {
  padding: 50px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.why-card:hover { background: #fff; }
.why-num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--mute);
  display: block;
  margin-bottom: 22px;
}
.why-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.why-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 420px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; gap: 60px; }
  .founder-card-visual { max-width: 500px; }
  .founder-facts { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-head,
  .about-intro,
  .founder,
  .values,
  .timeline,
  .why {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-head {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .page-title { font-size: clamp(34px, 9vw, 56px); margin-bottom: 28px; }
  .page-lead { font-size: 16px; }

  .about-intro,
  .founder,
  .values,
  .timeline,
  .why {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about-intro .intro-title,
  .values-title,
  .timeline-title,
  .why-title {
    font-size: clamp(22px, 6vw, 34px);
    margin-bottom: 40px;
  }

  .founder-name { font-size: clamp(32px, 9vw, 48px); }
  .founder-avatar { font-size: 90px; border-radius: 18px; }
  .founder-quote { padding: 24px; }

  .values-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .value-card,
  .why-card { padding: 36px 26px; }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
  }
  .timeline-item:hover { padding-left: 0; }
  .timeline-year { font-size: 24px; }
}

/*End About us full code*/

/*website design code*/

/* ============================================================
   WEBSITE PACKAGES PAGE — Advanced UI
   ============================================================ */

/* ============================================================
   WEBSITE PACKAGES PAGE v2 — Premium UI/UX + Parallax
   ============================================================ */

/* ---- Parallax Hero with layered orbs ---- */
.wp2-hero {
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  padding: 220px 48px 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.wp2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.wp2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  will-change: transform;
}
.wp2-orb.o1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(255,77,0,0.55), transparent 70%);
  top: -180px; right: -140px;
  animation: wp2Float1 16s ease-in-out infinite;
}
.wp2-orb.o2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(120,90,255,0.4), transparent 70%);
  bottom: -200px; left: -120px;
  animation: wp2Float2 20s ease-in-out infinite;
}
.wp2-orb.o3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,200,180,0.32), transparent 70%);
  top: 45%; left: 52%;
  animation: wp2Float3 18s ease-in-out infinite;
}
@keyframes wp2Float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-70px, 60px) scale(1.15); }
}
@keyframes wp2Float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(80px, -50px) scale(1.1); }
}
@keyframes wp2Float3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-50px, 70px) scale(0.9); }
}

/* Parallax grid overlay */
.wp2-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  will-change: transform;
}
.wp2-hero > *:not(.wp2-hero-bg) { position: relative; z-index: 1; }

/* Rotating tech word */
.wp2-rotate {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
  position: relative;
  min-width: 4ch;
}
.wp2-rotate span {
  display: inline-block;
  opacity: 0;
  animation: wp2WordCycle 9s infinite;
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
}
.wp2-rotate span:nth-child(1) { animation-delay: 0s; }
.wp2-rotate span:nth-child(2) { animation-delay: 3s; }
.wp2-rotate span:nth-child(3) { animation-delay: 6s; }
.wp2-rotate .placeholder { position: static; opacity: 0; }

@keyframes wp2WordCycle {
  0%,   2%  { opacity: 0; transform: translateY(10px); }
  6%,  28%  { opacity: 1; transform: translateY(0); }
  33%,100%  { opacity: 0; transform: translateY(-10px); }
}

/* Hero badges */
.wp2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.wp2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.3s;
}
.wp2-badge:hover { transform: translateY(-3px); border-color: var(--accent); }
.wp2-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: wp2Pulse 2s ease-in-out infinite;
}
@keyframes wp2Pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.7); }
}

/* ---- Tech marquee (dark) ---- */
.wp2-marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wp2-marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: wp2Scroll 42s linear infinite;
  font-size: clamp(16px, 1.7vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.wp2-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.wp2-marquee-track span::after {
  content: "•";
  color: var(--accent);
  font-size: 1.3em;
}
@keyframes wp2Scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Stats strip ---- */
.wp2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.wp2-stat {
  padding: 60px 44px;
  border-right: 1px solid var(--line);
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.wp2-stat:last-child { border-right: none; }
.wp2-stat:hover { background: #fff; }
.wp2-stat::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.wp2-stat:hover::after { transform: scaleX(1); }
.wp2-stat h3 {
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.wp2-stat p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---- Tech category cards ---- */
.wp2-tech-section {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.wp2-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.wp2-tech-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 34px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.6s,
              border-color 0.4s;
}
.wp2-tech-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.wp2-tech-card:hover::before { transform: scaleX(1); }
.wp2-tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.09);
  border-color: #d8d8d8;
}
.wp2-tech-icon {
  width: 46px; height: 46px;
  color: var(--accent);
  margin-bottom: 24px;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.wp2-tech-card:hover .wp2-tech-icon {
  transform: rotate(-8deg) scale(1.1);
}
.wp2-tech-card h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.wp2-tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.wp2-tech-list li {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
  transition: color 0.3s, transform 0.3s;
}
.wp2-tech-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1.5px;
  background: var(--mute);
  transition: background 0.3s, width 0.3s;
}
.wp2-tech-card:hover .wp2-tech-list li { color: var(--ink); }
.wp2-tech-card:hover .wp2-tech-list li::before {
  background: var(--accent);
  width: 11px;
}

/* ---- Types of websites ---- */
.wp2-types {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.wp2-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.wp2-type-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 46px 40px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.6s,
              border-color 0.4s;
}
.wp2-type-card::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.14), transparent 70%);
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
  pointer-events: none;
}
.wp2-type-card:hover::after { transform: scale(1.7); }
.wp2-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.10);
  border-color: #d8d8d8;
}
.wp2-type-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,77,0,0.08);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-weight: 600;
}
.wp2-type-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.wp2-type-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mute);
  margin-bottom: 24px;
}
.wp2-type-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wp2-type-tag {
  font-size: 12px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--mute);
  transition: all 0.3s;
}
.wp2-type-card:hover .wp2-type-tag {
  border-color: var(--ink);
  color: var(--ink);
}

/* ---- Features grid ---- */
.wp2-features {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.wp2-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 70px;
}
.wp2-feat {
  padding: 46px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.4s, transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
}
.wp2-feat:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  z-index: 2;
}
.wp2-feat-num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.wp2-feat h3 {
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.wp2-feat p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mute);
}

/* ---- Process timeline ---- */
.wp2-process {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.wp2-process-list {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}
.wp2-process-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 50px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.wp2-process-item:last-child { border-bottom: 1px solid var(--line); }
.wp2-process-item:hover { padding-left: 24px; }
.wp2-process-num {
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--mute);
  line-height: 1;
  transition: color 0.4s;
}
.wp2-process-item:hover .wp2-process-num { color: var(--accent); }
.wp2-process-content h3 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.wp2-process-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mute);
  max-width: 760px;
}

/* ---- Parallax dark section ---- */
.wp2-parallax {
  position: relative;
  padding: 170px 48px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.wp2-parallax-orb {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.35), transparent 70%);
  filter: blur(90px);
  top: -240px; right: -220px;
  will-change: transform;
  pointer-events: none;
}
.wp2-parallax-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}
.wp2-parallax .eyebrow { color: #999; }
.wp2-parallax-title {
  font-size: clamp(34px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 30px;
}
.wp2-parallax-title .stroke {
  -webkit-text-stroke: 1.5px var(--bg);
  color: transparent;
}
.wp2-parallax-text {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: #b0b0b0;
  max-width: 800px;
  margin-bottom: 48px;
}
.wp2-parallax-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 50px;
  border-top: 1px solid #222;
}
.wp2-metric h4 {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.wp2-metric p {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #888;
}

/* ---- Packages ---- */
.wp2-pricing {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.wp2-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 70px;
}
.wp2-pkg {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 46px 38px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.5s,
              border-color 0.5s;
}
.wp2-pkg:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.10);
  border-color: #d8d8d8;
}
.wp2-pkg.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: scale(1.03);
}
.wp2-pkg.featured:hover { transform: scale(1.03) translateY(-8px); }
.wp2-pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.wp2-pkg-name {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 22px;
}
.wp2-pkg.featured .wp2-pkg-name { color: #999; }
.wp2-pkg-price {
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.wp2-pkg-usd {
  font-size: 15px;
  color: var(--mute);
  margin-bottom: 16px;
}
.wp2-pkg.featured .wp2-pkg-usd { color: #999; }
.wp2-pkg-delivery {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.wp2-pkg.featured .wp2-pkg-delivery { border-bottom-color: #222; }
.wp2-pkg-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  margin-bottom: 28px;
}
.wp2-pkg.featured .wp2-pkg-desc { color: #bbb; }
.wp2-pkg-features { list-style: none; margin-bottom: 34px; flex-grow: 1; }
.wp2-pkg-features li {
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.wp2-pkg.featured .wp2-pkg-features li {
  color: #ddd;
  border-bottom-color: rgba(255,255,255,0.06);
}
.wp2-pkg-features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}
.wp2-pkg-features li.muted { color: var(--mute); }
.wp2-pkg-features li.muted::before { content: "—"; color: #ccc; }
.wp2-pkg-cta {
  display: block;
  text-align: center;
  padding: 18px 32px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s;
  cursor: pointer;
  background: none;
  font-family: inherit;
  color: var(--ink);
}
.wp2-pkg-cta:hover { background: var(--ink); color: var(--bg); }
.wp2-pkg.featured .wp2-pkg-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.wp2-pkg.featured .wp2-pkg-cta:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ---- Add-ons ---- */
.wp2-addons {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.wp2-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.wp2-addon {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 26px;
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.4s,
              border-color 0.4s;
}
.wp2-addon:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: #d8d8d8;
}
.wp2-addon h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.wp2-addon p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.55;
  margin-bottom: 14px;
}
.wp2-addon-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

/* ---- Modern Form ---- */
.wp2-form-section {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #f3f3f3);
  position: relative;
  overflow: hidden;
}
.wp2-form-orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.12), transparent 70%);
  filter: blur(80px);
  top: -200px; left: -180px;
  pointer-events: none;
}
.wp2-form-wrap {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 60px 56px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.06);
}
.wp2-form-wrap .eyebrow { margin-bottom: 18px; }
.wp2-form-title {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.wp2-form-sub {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.6;
  margin-bottom: 44px;
}
.wp2-form { display: flex; flex-direction: column; gap: 26px; }
.wp2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wp2-form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.wp2-form-field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  transition: color 0.3s;
}
.wp2-form-field:focus-within label { color: var(--accent); }
.wp2-form-field input,
.wp2-form-field textarea,
.wp2-form-field select {
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  padding: 13px 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
}
.wp2-form-field input:focus,
.wp2-form-field textarea:focus,
.wp2-form-field select:focus {
  border-bottom-color: var(--accent);
}
.wp2-form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
  padding-top: 10px;
}
.wp2-form-field input::placeholder,
.wp2-form-field textarea::placeholder {
  color: #bbb;
}
.wp2-form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
}
.wp2-form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.wp2-form-note {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f6f6f6;
  border: 1px solid var(--line);
}

/* ---- FAQ ---- */
.wp2-faq {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .wp2-tech-grid,
  .wp2-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .wp2-addon-grid { grid-template-columns: repeat(2, 1fr); }
  .wp2-pkg-grid { grid-template-columns: 1fr; gap: 34px; }
  .wp2-pkg.featured { transform: none; }
  .wp2-pkg.featured:hover { transform: translateY(-8px); }
  .wp2-parallax-metrics,
  .wp2-stats { grid-template-columns: repeat(2, 1fr); }
  .wp2-stats .wp2-stat { border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .wp2-type-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wp2-hero, .wp2-tech-section, .wp2-types, .wp2-features,
  .wp2-process, .wp2-parallax, .wp2-pricing, .wp2-addons,
  .wp2-form-section, .wp2-faq {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .wp2-hero { padding-top: 130px; padding-bottom: 70px; min-height: auto; }
  .wp2-tech-grid,
  .wp2-feat-grid,
  .wp2-type-grid,
  .wp2-addon-grid,
  .wp2-pkg-grid { grid-template-columns: 1fr; }
  .wp2-process-item { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .wp2-process-item:hover { padding-left: 0; }
  .wp2-process-num { font-size: 30px; }
  .wp2-parallax-metrics,
  .wp2-stats { grid-template-columns: 1fr; }
  .wp2-stat { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--line); }
  .wp2-form-wrap { padding: 40px 26px; }
  .wp2-form-row { grid-template-columns: 1fr; gap: 22px; }
  .wp2-form-actions { flex-direction: column; }
  .wp2-form-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/*end website code*/

/*social media code start*/
/* ============================================================
   SOCIAL MEDIA PACKAGES PAGE — PREMIUM UI/UX + PARALLAX
   Fully fixed rotating word + modern animations
   ============================================================ */

/* ---- Parallax Hero ---- */
.soc-hero {
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  padding: 220px 48px 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.soc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.soc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  will-change: transform;
}
.soc-orb.o1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(255,77,0,0.55), transparent 70%);
  top: -180px; right: -140px;
  animation: socFloat1 16s ease-in-out infinite;
}
.soc-orb.o2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(120,90,255,0.4), transparent 70%);
  bottom: -200px; left: -120px;
  animation: socFloat2 20s ease-in-out infinite;
}
.soc-orb.o3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,200,180,0.32), transparent 70%);
  top: 45%; left: 52%;
  animation: socFloat3 18s ease-in-out infinite;
}
@keyframes socFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-70px, 60px) scale(1.15); }
}
@keyframes socFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(80px, -50px) scale(1.1); }
}
@keyframes socFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-50px, 70px) scale(0.9); }
}
.soc-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  will-change: transform;
}
.soc-hero > *:not(.soc-hero-bg) { position: relative; z-index: 1; }

/* ============================================================
   ROTATING WORD — FULLY FIXED
   No overlap, no cut, proper height + width reserve
   ============================================================ */

.soc-hero .page-title {
  position: relative;
}

.soc-rotate-wrap {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-weight: 500;
  height: 1.05em;
  line-height: 1.05;
  min-width: 12ch;
  overflow: hidden;
  vertical-align: bottom;
  clip-path: inset(-20% 0 -20% 0);
}

.soc-rotate-item {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  animation: socRotateWord 9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform, opacity;
}

.soc-rotate-item:nth-child(1) { animation-delay: 0s; }
.soc-rotate-item:nth-child(2) { animation-delay: 3s; }
.soc-rotate-item:nth-child(3) { animation-delay: 6s; }

@keyframes socRotateWord {
  0%   { opacity: 0; transform: translateY(100%); }
  6%   { opacity: 1; transform: translateY(0); }
  28%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 0; transform: translateY(-100%); }
}

/* Hero badges */
.soc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.soc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.3s;
}
.soc-badge:hover { transform: translateY(-3px); border-color: var(--accent); }
.soc-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: socPulse 2s ease-in-out infinite;
}
@keyframes socPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.7); }
}

/* ---- Platform marquee (dark) ---- */
.soc-marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.soc-marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: socScroll 42s linear infinite;
  font-size: clamp(16px, 1.7vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.soc-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.soc-marquee-track span::after {
  content: "•";
  color: var(--accent);
  font-size: 1.3em;
}
@keyframes socScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Stats strip ---- */
.soc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.soc-stat {
  padding: 60px 44px;
  border-right: 1px solid var(--line);
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.soc-stat:last-child { border-right: none; }
.soc-stat:hover { background: #fff; }
.soc-stat::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.soc-stat:hover::after { transform: scaleX(1); }
.soc-stat h3 {
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.soc-stat p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---- Platform cards ---- */
.soc-platforms {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.soc-plat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.soc-plat-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 42px 34px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.6s,
              border-color 0.4s;
}
.soc-plat-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -40%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.15), transparent 70%);
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.soc-plat-card:hover::before { transform: scale(1.6) translate(-20px, 20px); }
.soc-plat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.10);
  border-color: #d8d8d8;
}
.soc-plat-logo {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: #fff;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.soc-plat-card:hover .soc-plat-logo { transform: rotate(-10deg) scale(1.1); }
.soc-plat-logo.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc-plat-logo.li { background: linear-gradient(135deg, #0077b5, #005f8c); }
.soc-plat-logo.fb { background: linear-gradient(135deg, #1877f2, #0a52b7); }
.soc-plat-logo.x  { background: linear-gradient(135deg, #000, #2b2b2b); }
.soc-plat-logo.yt { background: linear-gradient(135deg, #ff0000, #c40000); }
.soc-plat-logo.wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.soc-plat-logo svg { width: 28px; height: 28px; }
.soc-plat-card h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.soc-plat-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mute);
  margin-bottom: 22px;
}
.soc-plat-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.soc-plat-tag {
  font-size: 11.5px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--mute);
  transition: all 0.3s;
}
.soc-plat-card:hover .soc-plat-tag { border-color: var(--ink); color: var(--ink); }

/* ---- Services grid ---- */
.soc-services {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.soc-serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 70px;
}
.soc-serv {
  padding: 46px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.4s, transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
}
.soc-serv:hover {
  background: #fff;
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.soc-serv-num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.soc-serv h3 {
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.soc-serv p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mute);
}

/* ---- Deep explain cards ---- */
.soc-deep {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.soc-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.soc-deep-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 46px 40px;
  background: #fff;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.5s,
              border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.soc-deep-card::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.12), transparent 70%);
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
  pointer-events: none;
}
.soc-deep-card:hover::after { transform: scale(1.6); }
.soc-deep-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  border-color: #d8d8d8;
}
.soc-deep-num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}
.soc-deep-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.soc-deep-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mute);
  margin-bottom: 16px;
}
.soc-deep-card p:last-child { margin-bottom: 0; }
.soc-deep-card strong { color: var(--ink); font-weight: 500; }

/* ---- Benefits grid ---- */
.soc-benefits {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.soc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 70px;
}
.soc-benefit {
  padding: 42px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.4s, transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.soc-benefit:hover {
  background: #fff;
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.soc-benefit-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 22px;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.soc-benefit:hover .soc-benefit-icon { transform: scale(1.12) rotate(-6deg); }
.soc-benefit h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.soc-benefit p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mute);
}

/* ---- Process timeline ---- */
.soc-process {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.soc-process-list {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}
.soc-process-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 50px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.soc-process-item:last-child { border-bottom: 1px solid var(--line); }
.soc-process-item:hover { padding-left: 24px; }
.soc-process-num {
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--mute);
  line-height: 1;
  transition: color 0.4s;
}
.soc-process-item:hover .soc-process-num { color: var(--accent); }
.soc-process-content h3 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.soc-process-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mute);
  max-width: 760px;
}

/* ---- Parallax dark section ---- */
.soc-parallax {
  position: relative;
  padding: 170px 48px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.soc-parallax-orb {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.35), transparent 70%);
  filter: blur(90px);
  top: -240px; right: -220px;
  will-change: transform;
  pointer-events: none;
}
.soc-parallax-inner { position: relative; z-index: 1; max-width: 1200px; }
.soc-parallax .eyebrow { color: #999; }
.soc-parallax-title {
  font-size: clamp(34px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 30px;
}
.soc-parallax-title .stroke {
  -webkit-text-stroke: 1.5px var(--bg);
  color: transparent;
}
.soc-parallax-text {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: #b0b0b0;
  max-width: 800px;
  margin-bottom: 48px;
}
.soc-parallax-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 50px;
  border-top: 1px solid #222;
}
.soc-metric h4 {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.soc-metric p {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #888;
}

/* ---- Packages ---- */
.soc-pricing {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.soc-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 70px;
}
.soc-pkg {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 46px 38px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.5s,
              border-color 0.5s;
}
.soc-pkg:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.10);
  border-color: #d8d8d8;
}
.soc-pkg.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: scale(1.03);
}
.soc-pkg.featured:hover { transform: scale(1.03) translateY(-8px); }
.soc-pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.soc-pkg-name {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 22px;
}
.soc-pkg.featured .soc-pkg-name { color: #999; }
.soc-pkg-price {
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.soc-pkg-usd {
  font-size: 15px;
  color: var(--mute);
  margin-bottom: 16px;
}
.soc-pkg.featured .soc-pkg-usd { color: #999; }
.soc-pkg-delivery {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.soc-pkg.featured .soc-pkg-delivery { border-bottom-color: #222; }
.soc-pkg-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  margin-bottom: 28px;
}
.soc-pkg.featured .soc-pkg-desc { color: #bbb; }
.soc-pkg-features { list-style: none; margin-bottom: 34px; flex-grow: 1; }
.soc-pkg-features li {
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.soc-pkg.featured .soc-pkg-features li {
  color: #ddd;
  border-bottom-color: rgba(255,255,255,0.06);
}
.soc-pkg-features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}
.soc-pkg-features li.muted { color: var(--mute); }
.soc-pkg-features li.muted::before { content: "—"; color: #ccc; }
.soc-pkg-cta {
  display: block;
  text-align: center;
  padding: 18px 32px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s;
  cursor: pointer;
  background: none;
  font-family: inherit;
  color: var(--ink);
}
.soc-pkg-cta:hover { background: var(--ink); color: var(--bg); }
.soc-pkg.featured .soc-pkg-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.soc-pkg.featured .soc-pkg-cta:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ---- Add-ons ---- */
.soc-addons {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}
.soc-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.soc-addon {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 26px;
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.4s,
              border-color 0.4s;
}
.soc-addon:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: #d8d8d8;
}
.soc-addon h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.soc-addon p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.55;
  margin-bottom: 14px;
}
.soc-addon-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

/* ---- Modern Form ---- */
.soc-form-section {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #f3f3f3);
  position: relative;
  overflow: hidden;
}
.soc-form-orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.12), transparent 70%);
  filter: blur(80px);
  top: -200px; left: -180px;
  pointer-events: none;
}
.soc-form-wrap {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 60px 56px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.06);
}
.soc-form-wrap .eyebrow { margin-bottom: 18px; }
.soc-form-title {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.soc-form-sub {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.6;
  margin-bottom: 44px;
}
.soc-form { display: flex; flex-direction: column; gap: 26px; }
.soc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.soc-form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.soc-form-field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  transition: color 0.3s;
}
.soc-form-field:focus-within label { color: var(--accent); }
.soc-form-field input,
.soc-form-field textarea,
.soc-form-field select {
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  padding: 13px 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
}
.soc-form-field input:focus,
.soc-form-field textarea:focus,
.soc-form-field select:focus {
  border-bottom-color: var(--accent);
}
.soc-form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
  padding-top: 10px;
}
.soc-form-field input::placeholder,
.soc-form-field textarea::placeholder { color: #bbb; }
.soc-form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
}
.soc-form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.soc-form-note {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f6f6f6;
  border: 1px solid var(--line);
}

/* ---- FAQ ---- */
.soc-faq {
  padding: 150px 48px;
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .soc-plat-grid,
  .soc-serv-grid,
  .soc-deep-grid { grid-template-columns: repeat(2, 1fr); }
  .soc-benefit-grid,
  .soc-addon-grid { grid-template-columns: repeat(2, 1fr); }
  .soc-pkg-grid { grid-template-columns: 1fr; gap: 34px; }
  .soc-pkg.featured { transform: none; }
  .soc-pkg.featured:hover { transform: translateY(-8px); }
  .soc-parallax-metrics,
  .soc-stats { grid-template-columns: repeat(2, 1fr); }
  .soc-stats .soc-stat { border-bottom: 1px solid var(--line); }
  .soc-rotate-wrap { min-width: 11ch; }
}

@media (max-width: 768px) {
  .soc-hero, .soc-platforms, .soc-services, .soc-deep,
  .soc-benefits, .soc-process, .soc-parallax, .soc-pricing,
  .soc-addons, .soc-form-section, .soc-faq {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .soc-hero { padding-top: 130px; padding-bottom: 70px; min-height: auto; }
  .soc-plat-grid,
  .soc-serv-grid,
  .soc-deep-grid,
  .soc-benefit-grid,
  .soc-addon-grid,
  .soc-pkg-grid { grid-template-columns: 1fr; }
  .soc-process-item { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .soc-process-item:hover { padding-left: 0; }
  .soc-process-num { font-size: 30px; }
  .soc-parallax-metrics,
  .soc-stats { grid-template-columns: 1fr; }
  .soc-stat { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--line); }
  .soc-form-wrap { padding: 40px 26px; }
  .soc-form-row { grid-template-columns: 1fr; gap: 22px; }
  .soc-form-actions { flex-direction: column; }
  .soc-form-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .soc-rotate-wrap { min-width: 9.5ch; height: 1.1em; }
}

@media (max-width: 480px) {
  .soc-rotate-wrap { min-width: 8.8ch; height: 1.15em; }
  .soc-hero { padding-top: 110px; padding-bottom: 60px; }
}

/*social media code end*/


/*blog design*/
/* ============================================================
   BLOG v2 — PREMIUM MODERN UI
   ============================================================ */

/* ---- Hero with animated orbs ---- */
.blog-head {
  position: relative;
  padding: 200px 48px 110px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.blog-head::before,
.blog-head::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}
.blog-head::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,77,0,0.5), transparent 70%);
  top: -140px; right: -80px;
  animation: blogOrbFloat1 14s ease-in-out infinite;
}
.blog-head::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(120,90,255,0.35), transparent 70%);
  bottom: -160px; left: -100px;
  animation: blogOrbFloat2 18s ease-in-out infinite;
}
.blog-head > * { position: relative; z-index: 1; }
@keyframes blogOrbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-50px, 40px) scale(1.15); }
}
@keyframes blogOrbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(60px, -40px) scale(1.1); }
}

.blog-head .page-title {
  font-size: clamp(40px, 7.5vw, 120px);
  margin-bottom: 32px;
}
.blog-head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.4px;
  margin-top: 32px;
}
.blog-head-meta span { color: var(--mute); }

/* ---- Filters bar (glass + sticky) ---- */
.blog-filters {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(250,250,250,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.blog-filters-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--mute);
  transition: all 0.35s cubic-bezier(0.2,0.8,0.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.blog-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 0;
}
.blog-tab > * { position: relative; z-index: 1; }
.blog-tab:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.blog-tab.active {
  border-color: var(--ink);
  color: var(--bg);
}
.blog-tab.active::before { transform: scaleX(1); }
.blog-tab.active:hover { color: var(--bg); }
.blog-tab .count {
  font-size: 11px;
  opacity: 0.7;
  padding: 1px 7px;
  background: rgba(0,0,0,0.06);
  border-radius: 100px;
}
.blog-tab.active .count {
  background: rgba(255,255,255,0.2);
  color: var(--bg);
}

/* ---- Search ---- */
.blog-search {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  padding: 6px 6px 6px 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.blog-search:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255,77,0,0.08);
}
.blog-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 0;
  width: 220px;
  color: var(--ink);
}
.blog-search input::placeholder { color: #bbb; }
.blog-search button {
  background: var(--ink);
  color: var(--bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.blog-search button:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* ---- Search info banner ---- */
.blog-search-info {
  padding: 20px 48px;
  font-size: 14px;
  color: var(--mute);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: #fff;
}
.blog-search-info strong { color: var(--ink); font-weight: 600; }
.blog-search-info a {
  color: var(--accent);
  font-weight: 500;
  transition: opacity 0.3s;
}
.blog-search-info a:hover { opacity: 0.7; }

/* ---- Featured post (PREMIUM) ---- */
.blog-featured-section {
  padding: 100px 48px 80px;
  border-bottom: 1px solid var(--line);
}
.blog-featured-section > .eyebrow { margin-bottom: 40px; }
.blog-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.6s,
              border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.blog-featured::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.08), transparent 70%);
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
  pointer-events: none;
}
.blog-featured:hover::before { transform: scale(1.5); }
.blog-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.10);
  border-color: #d8d8d8;
}
.blog-featured-image {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}
.blog-featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.blog-featured:hover .blog-featured-image img { transform: scale(1.06); }
.blog-featured-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  font-weight: 300;
  color: var(--accent);
  background: linear-gradient(135deg, #fff, #f5f5f5);
}
.blog-featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(255,77,0,0.35);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 8px 24px rgba(255,77,0,0.35); }
  50%     { box-shadow: 0 8px 32px rgba(255,77,0,0.6); }
}
.blog-featured-content { position: relative; z-index: 1; }
.blog-featured-content h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 22px 0 20px;
  transition: color 0.3s;
}
.blog-featured:hover .blog-featured-content h2 { color: var(--accent); }
.blog-featured-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mute);
  margin-bottom: 28px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
.blog-featured:hover .blog-read-more { transform: translateX(8px); }

/* ---- Grid header ---- */
.blog-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}
.blog-grid-header .eyebrow { margin: 0; }
.blog-grid-count {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---- Posts grid ---- */
.blog-grid-section {
  padding: 80px 48px 120px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.5s,
              border-color 0.4s;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 2;
}
.blog-card:hover::before { transform: scaleX(1); }
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.12);
  border-color: #d8d8d8;
}
.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  font-weight: 300;
  color: var(--accent);
  background: linear-gradient(135deg, #fff, #f0f0f0);
}
.blog-card-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}
.blog-card:hover .blog-card-cat {
  background: var(--accent);
  color: #fff;
}
.blog-card-content {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.blog-card-content h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.3;
  margin: 14px 0 12px;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover .blog-card-content h3 { color: var(--accent); }
.blog-card-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mute);
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-arrow {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
  transition: color 0.3s, transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card:hover .blog-card-arrow {
  color: var(--accent);
  transform: translateX(8px);
}

/* ---- Pagination (modern) ---- */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.blog-page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: var(--ink);
  transition: all 0.35s cubic-bezier(0.2,0.8,0.2,1);
  cursor: pointer;
}
.blog-page-btn:hover:not(.disabled) {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.blog-page-btn.disabled {
  color: #ccc;
  cursor: not-allowed;
  background: #fafafa;
}
.blog-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mute);
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.blog-page-num:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}
.blog-page-num.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.blog-page-dots {
  color: var(--mute);
  padding: 0 4px;
  font-size: 16px;
}

/* ---- Empty state ---- */
.blog-empty {
  text-align: center;
  padding: 120px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.blog-empty-icon {
  font-size: 64px;
  margin-bottom: 24px;
  opacity: 0.5;
}
.blog-empty h3 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.blog-empty p {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; gap: 40px; padding: 30px; }
}
@media (max-width: 768px) {
  .blog-head { padding: 130px 20px 70px; }
  .blog-head .page-title { font-size: clamp(34px, 9vw, 58px); }
  .blog-filters { padding: 16px 20px; }
  .blog-filters-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .blog-tabs {
    overflow-x: auto;
    padding-bottom: 6px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .blog-tabs::-webkit-scrollbar { display: none; }
  .blog-search { width: 100%; }
  .blog-search input { width: 100%; flex: 1; }
  .blog-search-info { padding: 16px 20px; font-size: 13px; flex-direction: column; align-items: flex-start; }
  .blog-featured-section { padding: 60px 20px 50px; }
  .blog-featured { padding: 24px; border-radius: 18px; }
  .blog-grid-section { padding: 50px 20px 80px; }
  .blog-grid { grid-template-columns: 1fr; gap: 22px; }
  .blog-grid-header { margin-bottom: 28px; padding-bottom: 18px; }
  .blog-pagination { gap: 12px; margin-top: 60px; padding-top: 36px; }
  .blog-page-btn { padding: 10px 16px; font-size: 12px; }
  .blog-page-num { width: 38px; height: 38px; font-size: 12.5px; }
  .blog-page-numbers { gap: 4px; }
  .blog-page-dots { display: none; }
  .blog-page-num:nth-child(n+6):not(.active) { display: none; }
}
/*blog end*/


/*blog single post*/
/* ============================================================
   SINGLE BLOG POST — Modern UI
   ============================================================ */

.bp {
  padding-bottom: 0;
}

/* ---- HEAD ---- */
.bp-head {
  position: relative;
  padding: 180px 48px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.bp-head::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.15), transparent 70%);
  filter: blur(80px);
  animation: bpOrbFloat 16s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bpOrbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-50px, 40px) scale(1.15); }
}
.bp-head-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.bp-breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bp-breadcrumb a { color: var(--mute); transition: color 0.3s; }
.bp-breadcrumb a:hover { color: var(--accent); }
.bp-breadcrumb span { color: #ccc; }
.bp-bc-current { color: var(--ink); font-weight: 500; }

.bp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 24px;
}
.bp-cat {
  color: var(--accent);
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(255,77,0,0.08);
  border-radius: 100px;
  transition: background 0.3s;
}
.bp-cat:hover { background: rgba(255,77,0,0.15); }
.bp-dot { color: #ccc; }

.bp-title {
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 28px;
}
.bp-excerpt {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
  color: var(--mute);
  margin-bottom: 40px;
  max-width: 700px;
}
.bp-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bp-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.bp-author-info strong {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.bp-author-info span {
  display: block;
  font-size: 12.5px;
  color: var(--mute);
  margin-top: 2px;
}

/* Hero image */
.bp-hero {
  max-width: 1100px;
  margin: 40px auto 0;
  aspect-ratio: 16/8;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #f0f0f0;
  box-shadow: 0 -8px 60px rgba(0,0,0,0.04);
}
.bp-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---- BODY ---- */
.bp-body {
  padding: 80px 48px 120px;
}

/* Content typography */
.bp-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17.5px;
  line-height: 1.8;
  color: #2a2a2a;
}
.bp-content > *:first-child { margin-top: 0; }
.bp-content h2 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 60px 0 20px;
  color: var(--ink);
  position: relative;
  padding-left: 20px;
}
.bp-content h2::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3em;
  width: 6px; height: 1em;
  background: var(--accent);
  border-radius: 3px;
}
.bp-content h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 44px 0 16px;
  color: var(--ink);
}
.bp-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--ink);
}
.bp-content p { margin-bottom: 24px; }
.bp-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}
.bp-content a:hover { opacity: 0.7; }
.bp-content strong { color: var(--ink); font-weight: 600; }
.bp-content em { font-style: italic; }
.bp-content ul, .bp-content ol {
  margin: 20px 0 28px 24px;
}
.bp-content li { margin-bottom: 10px; line-height: 1.7; }
.bp-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.bp-content img {
  max-width: 100%; height: auto;
  border-radius: 14px;
  margin: 32px 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.bp-content code {
  background: #f2f2f2;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'SF Mono', Menlo, monospace;
  color: var(--accent);
}
.bp-content pre {
  background: var(--ink);
  color: #e6e6e6;
  padding: 24px;
  border-radius: 14px;
  overflow-x: auto;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.6;
}
.bp-content pre code { background: transparent; color: inherit; padding: 0; }
.bp-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 50px 0;
}
.bp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.bp-content th, .bp-content td {
  padding: 14px 18px;
  border: 1px solid var(--line);
  text-align: left;
}
.bp-content th {
  background: var(--ink);
  color: var(--bg);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.bp-content tbody tr:hover { background: #fafafa; }

/* Tags */
.bp-tags {
  max-width: 780px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bp-tag {
  font-size: 12.5px;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--mute);
  transition: all 0.3s;
}
.bp-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,77,0,0.05);
}

/* Share */
.bp-share {
  max-width: 780px;
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.bp-share-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
  margin-right: 8px;
  font-weight: 600;
}
.bp-share-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: all 0.3s;
}
.bp-share-btn:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-3px);
}

/* Author bio */
.bp-bio {
  max-width: 780px;
  margin: 60px auto 0;
  padding: 36px;
  background: linear-gradient(135deg, #f6f6f6, #fafafa);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: start;
}
.bp-bio-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  flex-shrink: 0;
}
.bp-bio h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.bp-bio p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mute);
}

/* ---- Comments ---- */
.bp-comments-section {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
  background: #fafafa;
}
.bp-comments-inner { max-width: 780px; margin: 0 auto; }
.bp-comments-title {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.bp-no-comments {
  font-size: 15px;
  color: var(--mute);
  padding: 30px 0;
  margin-bottom: 50px;
}
.bp-comment-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 60px;
}
.bp-comment { display: flex; gap: 16px; }
.bp-comment-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}
.bp-comment-avatar.small { width: 38px; height: 38px; font-size: 15px; }
.bp-comment-body { flex: 1; min-width: 0; }
.bp-comment-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.bp-comment-head strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.bp-comment-date { font-size: 12px; color: var(--mute); }
.bp-comment-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}
.bp-reply-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s;
}
.bp-reply-btn:hover { opacity: 0.7; }
.bp-replies {
  margin-top: 22px;
  padding-left: 22px;
  border-left: 2px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Comment form */
.bp-form-wrap {
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.bp-form-wrap h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bp-form-sub {
  font-size: 14px;
  color: var(--mute);
  margin-bottom: 30px;
}
.bp-alert {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}
.bp-alert.success {
  background: rgba(34,160,107,0.1);
  border: 1px solid rgba(34,160,107,0.3);
  color: #1e8a5a;
}
.bp-alert.error {
  background: rgba(255,77,0,0.08);
  border: 1px solid rgba(255,77,0,0.3);
  color: var(--accent);
}
.bp-reply-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255,77,0,0.08);
  border-radius: 12px;
  font-size: 13.5px;
  margin-bottom: 20px;
}
.bp-reply-notice button {
  background: none;
  border: none;
  color: var(--accent);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.bp-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.bp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bp-form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 8px;
}
.bp-form-field input,
.bp-form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.bp-form-field input:focus,
.bp-form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,77,0,0.08);
}
.bp-form-field textarea { min-height: 120px; line-height: 1.65; }
.bp-form button[type=submit] { align-self: flex-start; margin-top: 8px; }

/* ---- Related ---- */
.bp-related {
  padding: 120px 48px;
  border-top: 1px solid var(--line);
}
.bp-related-title {
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 16px 0 60px;
}
.bp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bp-related-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.5s,
              border-color 0.4s;
}
.bp-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.10);
  border-color: #d8d8d8;
}
.bp-related-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}
.bp-related-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.bp-related-card:hover .bp-related-image img { transform: scale(1.06); }
.bp-related-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 300;
  color: var(--accent);
  background: linear-gradient(135deg, #fff, #f0f0f0);
}
.bp-related-content {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bp-meta-small {
  display: flex;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.bp-related-content h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.bp-related-card:hover .bp-related-content h3 { color: var(--accent); }
.bp-related-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mute);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .bp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bp-head { padding: 130px 20px 0; }
  .bp-head-inner { padding-bottom: 40px; }
  .bp-title { font-size: clamp(30px, 8vw, 48px); }
  .bp-excerpt { font-size: 15.5px; }
  .bp-hero { border-radius: 16px 16px 0 0; margin-top: 30px; }
  .bp-body { padding: 50px 20px 80px; }
  .bp-content { font-size: 16px; }
  .bp-content h2 { font-size: clamp(22px, 6vw, 32px); padding-left: 16px; }
  .bp-content h3 { font-size: clamp(18px, 5vw, 24px); }
  .bp-content blockquote { font-size: 17px; padding-left: 18px; }
  .bp-content table { font-size: 13px; }
  .bp-content th, .bp-content td { padding: 10px 12px; }
  .bp-comments-section { padding: 60px 20px; }
  .bp-comment-form-row { grid-template-columns: 1fr; }
  .bp-form-row { grid-template-columns: 1fr; }
  .bp-bio { flex-direction: column; padding: 26px; }
  .bp-related { padding: 80px 20px; }
  .bp-related-grid { grid-template-columns: 1fr; }
}
/*blog post end*/
