:root {
  --accent: #06b6d4;
  --accent-light: #67e8f9;
  --accent-dark: #0e7490;
  --accent-soft: #12303a;
  --text: #e9ecf8;
  --muted: #a8b0c8;
  --bg: #0b1020;
  --surface: #111628;
  --surface-2: #1a2033;
  --radius: 20px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  --gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 52px;
  background: rgba(11, 16, 32, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.16);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 30px rgba(6, 182, 212, 0.14); }

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--accent-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gradient);
  color: #081018 !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.32);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.42) !important;
}

.nav-cta::after { display: none !important; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 108px 52px 72px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(103, 232, 249, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 80% 10%, rgba(56, 189, 248, 0.1) 0%, transparent 40%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(103, 232, 249, 0.16);
  top: -100px;
  right: 100px;
}

.hero-blob-2 {
  width: 250px;
  height: 250px;
  background: rgba(56, 189, 248, 0.12);
  bottom: 50px;
  right: 350px;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text { animation: slideUp 0.8s ease both; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

h1, h2 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

h1 span, h2 span { color: var(--accent-light); }
.hero-name { display: inline-block; max-width: 16ch; line-height: 1.08; font-size: 0.68em; }

.hero-desc, .about-desc, .process-desc, .section-header p, .blog-body p, .contact-info p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-desc { max-width: 460px; margin-bottom: 30px; font-size: 15px; }

.hero-buttons { display: flex; gap: 16px; align-items: center; }

.btn-primary {
  background: var(--gradient);
  color: #081018;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.45);
}

.btn-secondary {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover { color: var(--accent-light); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-light);
}

.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: slideUp 0.8s 0.2s ease both;
}

.hero-img-card {
  width: 330px;
  height: 390px;
  background: linear-gradient(145deg, #1f2f3a, #112430);
  border-radius: 30px 30px 100px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(103, 232, 249, 0.24);
}

.hero-img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 1;
}

.hero-person-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
}

.hero-float-badge {
  position: absolute;
  background: var(--surface);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-float-badge.badge-1 { top: 30px; left: -30px; }
.hero-float-badge.badge-2 { bottom: 60px; right: -30px; animation-delay: -2s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge-icon { font-size: 22px; }
.badge-text { font-size: 12px; font-weight: 600; color: var(--text); }
.badge-sub { font-size: 11px; color: var(--muted); }

.about,
.portfolio,
.services,
.testimonials {
  padding: 86px 52px;
  background: var(--surface);
}

.process,
.blog,
.clients,
.contact {
  padding: 86px 52px;
  background: var(--surface-2);
}

.about-inner,
.process-inner,
.services-inner,
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-card {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--accent-soft), #1a4b5a);
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient);
  color: #081018;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
  z-index: 2;
}

.about-exp-num {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  display: block;
}

.about-exp-label { font-size: 12px; opacity: 0.9; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.skill-tag {
  background: var(--accent-soft);
  color: var(--accent-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.about-socials,
.contact-socials { display: flex; gap: 12px; margin-top: 24px; }

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
}

.social-btn:hover {
  background: var(--accent-soft);
  transform: translateY(-3px);
}

.process-content h2 { margin-bottom: 20px; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.process-card,
.blog-card,
.contact-form,
.service-item,
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
}

.process-card {
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient);
  border-radius: 4px;
  transition: height 0.3s;
}

.process-card:hover { transform: translateY(-5px); }
.process-card:hover::before { height: 100%; }

.process-icon,
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.process-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-card h4,
.blog-body h4,
.service-item h4,
.author-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--text);
}

.process-card p,
.service-item p,
.author-title,
.contact-item-label { color: var(--muted); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 46px;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-card:hover .portfolio-img,
.portfolio-card:hover .portfolio-placeholder { transform: scale(1.08); }

.portfolio-img,
.portfolio-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.5s;
}

.portfolio-img { object-fit: cover; }

.portfolio-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 116, 144, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-info h4,
.portfolio-link { color: #fff; }

.portfolio-info p { color: rgba(255, 255, 255, 0.8); margin-bottom: 12px; font-size: 13px; }
.portfolio-info .project-stack {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  font-weight: 600;
}
.portfolio-info .project-desc {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.5;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.project-tech-tag {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.15);
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 50px;
}

.portfolio-link:hover { background: rgba(255, 255, 255, 0.2); }

.portfolio-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--surface);
  color: var(--accent-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.portfolio-more { text-align: center; margin-top: 48px; }

.cta-banner {
  padding: 80px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(6, 182, 212, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(103, 232, 249, 0.15) 0%, transparent 50%);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255, 255, 255, 0.7); }

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card { overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.blog-img,
.blog-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: block;
}

.blog-img { object-fit: cover; }

.blog-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.blog-body { padding: 20px; }
.blog-date { font-size: 11px; color: var(--accent-light); font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }

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

.service-item {
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.3s, transform 0.3s;
  border: 2px solid transparent;
}

.service-item:hover,
.service-item.active {
  background: var(--accent-soft);
  border-color: var(--accent-dark);
  transform: translateX(5px);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--surface-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.clients-logos {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 60px;
}

.client-logo {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #6f778f;
  transition: color 0.3s;
}

.client-logo:hover { color: var(--accent-light); }

.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  padding: 48px;
  margin-top: 48px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Sora', sans-serif;
  font-size: 104px;
  color: var(--accent-light);
  opacity: 0.25;
  position: absolute;
  top: -20px;
  left: 30px;
  line-height: 1;
}

.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 17px; line-height: 1.8; color: var(--text); font-style: italic; margin-bottom: 32px; }

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #081018;
  font-family: 'Sora', sans-serif;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active { opacity: 1; width: 24px; border-radius: 4px; }

.contact-inner { align-items: start; grid-template-columns: 1fr 1.2fr; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  color: var(--accent-light);
}
.contact-item-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--accent-light); }

.contact-form {
  padding: 44px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--surface-2);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
  background: var(--surface);
}

.form-group textarea { height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: #081018;
  border: none;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.4);
}

footer {
  background: var(--bg);
  padding: 34px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255, 255, 255, 0.45); font-size: 13px; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #151b2f; }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  nav,
  .hero,
  .about,
  .process,
  .portfolio,
  .cta-banner,
  .blog,
  .services,
  .clients,
  .testimonials,
  .contact,
  footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-content,
  .about-inner,
  .process-inner,
  .services-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-text { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-image-wrap { order: -1; }
  .hero-name { max-width: none; }
  .hero-img-card { width: 320px; height: 380px; }
  .about-img-card { max-width: 320px; }
}

@media (max-width: 720px) {
  nav { padding-top: 14px; padding-bottom: 14px; }
  .nav-links { display: none; }
  .hero { padding-top: 100px; }
  h1 { font-size: clamp(30px, 8vw, 40px); }
  h2 { font-size: clamp(24px, 7vw, 32px); }
  .hero-desc,
  .about-desc,
  .section-header p,
  .contact .reveal > p { font-size: 16px; }
  .portfolio-info .project-desc { font-size: 13px; }
  .hero-name { font-size: 0.72em; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-img-card { width: 100%; max-width: 280px; height: 330px; }
  .about-img-card { max-width: 260px; }
  .hero-float-badge.badge-1 { left: 0; top: 20px; }
  .hero-float-badge.badge-2 { right: 0; bottom: 20px; }
  .process-steps,
  .form-row,
  .blog-grid,
  .portfolio-grid { grid-template-columns: 1fr; }
  .cta-inner,
  footer { flex-direction: column; gap: 18px; align-items: flex-start; }
  .contact-form,
  .testimonial-card { padding: 24px; }
}
