/* =====================================================
   DRIFTMARK MEDIA — HOME PAGE REDESIGN STYLES
   ===================================================== */

/* ---- Reset & Base ---- */
.hn-hero, .hn-strip, .hn-services, .hn-about, .hn-portfolio,
.hn-process, .hn-testimonials, .hn-blog, .hn-cta {
  position: relative;
  overflow: hidden;
}

/* Gradient text utility */
.hn-gradient-text {
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section tag chip */
.hn-tag {
  display: inline-block;
  background: rgba(79,70,229,0.1);
  color: #4F46E5;
  border: 1px solid rgba(79,70,229,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hn-tag-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

/* Centered section header */
.hn-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.hn-section-head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hn-section-head p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
}
.hn-section-head-white h2 { color: #fff; }

/* Center helper */
.hn-center { text-align: center; }

/* =====================
   BUTTONS
   ===================== */
.hn-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(79,70,229,0.35);
}
.hn-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,0.45);
}
.hn-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.hn-btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hn-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 11px;
}
.hn-btn-outline {
  display: inline-block;
  border: 2px solid #4F46E5;
  color: #4F46E5;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.hn-btn-outline:hover { background: #4F46E5; color: #fff; }
.hn-btn-white {
  display: inline-block;
  background: #fff;
  color: #4F46E5;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hn-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.hn-btn-ghost-white {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.hn-btn-ghost-white:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* =====================
   HERO
   ===================== */
.hn-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0c4a6e 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hn-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(79,70,229,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(6,182,212,0.2) 0%, transparent 50%);
}
.hn-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hn-hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,70,229,0.4), rgba(6,182,212,0.4));
  animation: float 8s infinite ease-in-out;
}
.hn-hero-particles span:nth-child(1) { width:300px;height:300px;top:10%;left:-5%;animation-delay:0s; }
.hn-hero-particles span:nth-child(2) { width:200px;height:200px;top:60%;right:-3%;animation-delay:2s; }
.hn-hero-particles span:nth-child(3) { width:150px;height:150px;top:30%;right:20%;animation-delay:4s; }
.hn-hero-particles span:nth-child(4) { width:100px;height:100px;bottom:20%;left:25%;animation-delay:1s; }
.hn-hero-particles span:nth-child(5) { width:80px;height:80px;top:70%;left:50%;animation-delay:3s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}
.hn-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hn-badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hn-hero-title {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hn-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hn-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hn-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hn-stat { padding: 0 24px; text-align: center; }
.hn-stat:first-child { padding-left: 0; }
.hn-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hn-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}
.hn-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
.hn-hero-visual { position: relative; }
.hn-hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.hn-hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hn-hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(79,70,229,0.2), rgba(6,182,212,0.1));
}
.hn-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: float-card 4s ease-in-out infinite;
}
.hn-float-top { top: -20px; left: -30px; }
.hn-float-bottom { bottom: -20px; right: -20px; animation-delay: 2s; }
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hn-float-icon { font-size: 24px; }
.hn-float-card strong { display:block;font-size:13px;font-weight:700;color:#0f172a; }
.hn-float-card span { font-size:12px;color:#64748b; }
.hn-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
}
.hn-hero-wave svg { width:100%;height:100%; }

/* =====================
   SERVICES STRIP
   ===================== */
.hn-strip {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}
.hn-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.hn-strip-inner::-webkit-scrollbar { display: none; }
.hn-strip-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94a3b8;
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid #e2e8f0;
}
.hn-strip-items {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hn-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
}
.hn-strip-dot {
  width: 4px; height: 4px;
  background: #cbd5e1;
  border-radius: 50%;
}

/* =====================
   SERVICES SECTION
   ===================== */
.hn-services {
  padding: 100px 0;
  background: #fff;
}
.hn-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.hn-svc-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hn-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(79,70,229,0.15);
}
.hn-svc-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.hn-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.hn-svc-card:hover .hn-svc-img img { transform: scale(1.05); }
.hn-svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(15,23,42,0.6));
}
.hn-svc-num {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #4F46E5;
}
.hn-svc-body { padding: 24px; }
.hn-svc-icon { font-size: 28px; margin-bottom: 12px; }
.hn-svc-body h3 { font-size: 18px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.hn-svc-body p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 16px; }
.hn-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.hn-svc-tags li {
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}
.hn-svc-link {
  font-size: 14px;
  font-weight: 700;
  color: #4F46E5;
  text-decoration: none;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hn-svc-link:hover { color: #06B6D4; }

/* =====================
   ABOUT SECTION
   ===================== */
.hn-about {
  padding: 100px 0;
  background: #f8fafc;
}
.hn-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hn-about-img-col { position: relative; }
.hn-about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.hn-about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.hn-about-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(79,70,229,0.4);
}
.hn-about-badge strong { display:block;font-size:32px;font-weight:900;line-height:1; }
.hn-about-badge span { font-size:12px;opacity:0.85;line-height:1.4; }
.hn-about-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid #4F46E5;
  border-radius: 24px;
  opacity: 0.2;
  z-index: -1;
}
.hn-about-content h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 20px;
}
.hn-about-content > p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hn-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.hn-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hn-feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(6,182,212,0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.hn-feature h4 { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.hn-feature p { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0; }
.hn-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.hn-about-stat { text-align: center; }
.hn-about-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hn-about-stat span { font-size: 12px; color: #64748b; font-weight: 600; }

/* =====================
   PORTFOLIO
   ===================== */
.hn-portfolio {
  padding: 100px 0;
  background: #fff;
}
.hn-portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.hn-port-large {
  grid-row: span 2;
}
.hn-port-card { border-radius: 16px; overflow: hidden; }
.hn-port-img {
  position: relative;
  width: 100%; height: 100%;
}
.hn-port-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.hn-port-card:hover .hn-port-img img { transform: scale(1.05); }
.hn-port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(15,23,42,0.9));
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}
.hn-port-card:hover .hn-port-overlay { opacity: 1; }
.hn-port-cat {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #67e8f9;
  margin-bottom: 8px;
}
.hn-port-info h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.hn-port-info p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 14px; }
.hn-port-link {
  font-size: 13px;
  font-weight: 700;
  color: #67e8f9;
  text-decoration: none;
}
.hn-port-link:hover { color: #fff; }

/* =====================
   PROCESS
   ===================== */
.hn-process {
  padding: 100px 0;
}
.hn-process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0c4a6e 100%);
}
.hn-process .container { position: relative; }
.hn-process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.hn-process-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s;
  backdrop-filter: blur(8px);
}
.hn-process-card:hover { background: rgba(255,255,255,0.12); }
.hn-process-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #67e8f9;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hn-process-icon { font-size: 32px; margin-bottom: 16px; }
.hn-process-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.hn-process-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}
.hn-process-arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin-top: 60px;
}

/* =====================
   TESTIMONIALS
   ===================== */
.hn-testimonials {
  padding: 100px 0;
  background: #f8fafc;
}
.hn-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hn-testi-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hn-testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.hn-testi-featured {
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  border-color: transparent;
}
.hn-testi-stars { font-size: 18px; color: #f59e0b; margin-bottom: 16px; letter-spacing: 2px; }
.hn-testi-featured .hn-testi-stars { color: #fde68a; }
.hn-testi-card blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin: 0 0 24px;
  font-style: normal;
}
.hn-testi-featured blockquote { color: rgba(255,255,255,0.9); }
.hn-testi-author { display: flex; align-items: center; gap: 14px; }
.hn-testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.hn-testi-author strong { display: block; font-size: 14px; font-weight: 700; color: #0f172a; }
.hn-testi-featured .hn-testi-author strong { color: #fff; }
.hn-testi-author span { font-size: 13px; color: #64748b; }
.hn-testi-featured .hn-testi-author span { color: rgba(255,255,255,0.75); }

/* =====================
   BLOG
   ===================== */
.hn-blog {
  padding: 100px 0;
  background: #fff;
}
.hn-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hn-blog-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hn-blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.hn-blog-img {
  height: 200px;
  overflow: hidden;
}
.hn-blog-img img, .hn-blog-img a {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.hn-blog-card:hover .hn-blog-img img { transform: scale(1.05); }
.hn-blog-img-placeholder {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hn-blog-placeholder-inner { font-size: 48px; }
.hn-blog-body { padding: 24px; }
.hn-blog-cat {
  display: inline-block;
  background: rgba(79,70,229,0.08);
  color: #4F46E5;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hn-blog-body h3 { font-size: 17px; font-weight: 800; color: #0f172a; line-height: 1.4; margin-bottom: 10px; }
.hn-blog-body h3 a { color: inherit; text-decoration: none; }
.hn-blog-body h3 a:hover { color: #4F46E5; }
.hn-blog-body p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 20px; }
.hn-blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.hn-blog-footer time { font-size: 12px; color: #94a3b8; }
.hn-blog-link { font-size: 13px; font-weight: 700; color: #4F46E5; text-decoration: none; }
.hn-blog-link:hover { color: #06B6D4; }

/* =====================
   CTA
   ===================== */
.hn-cta {
  padding: 100px 0;
}
.hn-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4F46E5 0%, #0891B2 100%);
}
.hn-cta .container { position: relative; }
.hn-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hn-cta-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hn-cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hn-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hn-cta-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hn-cta-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hn-cta-card-row:last-of-type { border-bottom: none; }
.hn-cta-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hn-dot-green { background: #22c55e; }
.hn-dot-blue { background: #60a5fa; }
.hn-dot-purple { background: #c084fc; }
.hn-dot-cyan { background: #67e8f9; }
.hn-cta-divider { height: 1px; background: rgba(255,255,255,0.2); margin: 20px 0; }
.hn-cta-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1200px) {
  .hn-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hn-portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .hn-port-large { grid-row: span 1; }
}

@media (max-width: 900px) {
  .hn-hero { min-height: auto; padding: 100px 0 60px; }
  .hn-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hn-hero-visual { display: none; }
  .hn-hero-stats { gap: 0; }
  .hn-stat { padding: 0 12px; }
  .hn-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hn-about-img-col { display: none; }
  .hn-process-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .hn-process-arrow { display: none; }
  .hn-testi-grid { grid-template-columns: 1fr; }
  .hn-blog-grid { grid-template-columns: 1fr; }
  .hn-cta-inner { grid-template-columns: 1fr; }
  .hn-cta-visual { display: none; }
  .hn-about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hn-services-grid { grid-template-columns: 1fr; }
  .hn-portfolio-grid { grid-template-columns: 1fr; }
  .hn-hero-btns { flex-direction: column; align-items: flex-start; }
  .hn-hero-stats { gap: 0; flex-wrap: wrap; }
  .hn-stat { padding: 8px 12px; }
  .hn-stat-divider { display: none; }
  .hn-process-grid { grid-template-columns: 1fr; }
  .hn-strip-items { flex-wrap: nowrap; }
}
