/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core palette */
  --primary: #6C63FF;
  --primary-dark: #5A52E0;
  --primary-light: #8B85FF;
  --secondary: #00C9A7;
  --accent-pink: #FF6B6B;
  --accent-orange: #FFA726;
  --accent-blue: #42A5F5;
  --accent-purple: #AB47BC;

  /* Neutrals */
  --bg: #FAFBFF;
  --bg-alt: #F0F2FF;
  --surface: #FFFFFF;
  --text: #1A1A2E;
  --text-secondary: #555770;
  --text-muted: #8E90A6;
  --border: #E4E6F1;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6C63FF 0%, #00C9A7 100%);
  --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FFA726 100%);
  --gradient-cool: linear-gradient(135deg, #42A5F5 0%, #AB47BC 100%);
  --gradient-hero: linear-gradient(135deg, #6C63FF 0%, #00C9A7 50%, #42A5F5 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #2D2B55 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(108, 99, 255, 0.06);
  --shadow-md: 0 4px 20px rgba(108, 99, 255, 0.1);
  --shadow-lg: 0 8px 40px rgba(108, 99, 255, 0.12);
  --shadow-xl: 0 16px 60px rgba(108, 99, 255, 0.15);
  --shadow-card: 0 4px 24px rgba(108, 99, 255, 0.08);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: 120px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.hidden {
  display: none !important;
}

.accent-primary { --accent: #6C63FF; }
.accent-secondary { --accent: #00C9A7; }
.accent-pink { --accent: #FF6B6B; }
.accent-orange { --accent: #FFA726; }
.accent-blue { --accent: #42A5F5; }
.accent-purple { --accent: #AB47BC; }

.ph-primary { --ph-accent: #6C63FF; }
.ph-secondary { --ph-accent: #00C9A7; }
.ph-pink { --ph-accent: #FF6B6B; }

/* ========== TYPOGRAPHY ========== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(0,201,167,0.1));
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section {
  padding: var(--section-pad) 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.3);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.btn-success {
  background: linear-gradient(135deg, #00C9A7, #00C9A7);
}

.btn-error {
  background: linear-gradient(135deg, #FF6B6B, #FF6B6B);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(108, 99, 255, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  z-index: 1001;
}

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

.footer .logo-img {
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 50px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.nav-active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.35) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 45, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1050;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: -150px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: var(--accent-pink);
  top: 40%;
  left: 50%;
  animation: float 18s ease-in-out infinite 5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.02); }
}

.hero-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  padding: 24px 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ========== ABOUT ========== */
.about {
  background: var(--surface);
}

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

.about-card-stack {
  position: relative;
  padding: 20px;
}

.about-card-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  transform: rotate(-4deg);
  opacity: 0.15;
}

.about-card-main {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-icon-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(108,99,255,0.08), rgba(0,201,167,0.08));
}

.about-card-main h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.about-card-main p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.highlight svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* ========== SERVICES ========== */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 99, 255, 0.1);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), color-mix(in srgb, var(--accent) 5%, transparent));
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
  background: var(--surface);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 16px;
}

.price-from {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-plus {
  font-size: 1.5rem;
  color: var(--primary);
}

.price-amount-text {
  display: block;
  font-size: 2.25rem;
  line-height: 1.05;
}

.pricing-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(0,201,167,0.1));
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.667 5L7.5 14.167 3.333 10' stroke='%236C63FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.pricing-deliverables {
  margin-top: 12px;
  font-style: normal;
}

.payment-policy {
  max-width: 720px;
  margin: 36px auto 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.payment-policy h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.payment-policy ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.payment-policy li {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
  display: flex;
  gap: 10px;
}

.payment-policy li::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient-primary);
  flex: 0 0 9px;
  margin-top: 8px;
}

.turnaround-box {
  max-width: 860px;
  margin: 24px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.turnaround-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.turnaround-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.turnaround-grid div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.turnaround-grid strong,
.turnaround-grid span {
  display: block;
}

.turnaround-grid strong {
  font-size: 0.88rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.turnaround-grid span {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
}

/* ========== PORTFOLIO ========== */
.portfolio {
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.portfolio-card-featured {
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(108, 99, 255, 0.2);
}

.portfolio-img {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(0, 201, 167, 0.04));
  background: linear-gradient(135deg, color-mix(in srgb, var(--ph-accent) 8%, var(--bg)), color-mix(in srgb, var(--ph-accent) 3%, var(--bg)));
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.ph-browser {
  background: var(--surface);
  border-radius: 8px 8px 0 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-bottom: none;
}

.ph-dots {
  display: flex;
  gap: 5px;
}

.ph-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.ph-dots span:first-child { background: #FF6B6B; }
.ph-dots span:nth-child(2) { background: #FFA726; }
.ph-dots span:last-child { background: #00C9A7; }

.ph-url {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 4px;
  flex: 1;
}

.ph-content {
  background: var(--surface);
  padding: 24px;
  flex: 1;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ph-heading {
  height: 16px;
  width: 70%;
  border-radius: 4px;
  background: var(--ph-accent);
  background: linear-gradient(90deg, var(--ph-accent), color-mix(in srgb, var(--ph-accent) 50%, transparent));
  opacity: 0.3;
}

.ph-text {
  height: 10px;
  width: 100%;
  border-radius: 3px;
  background: var(--border);
}

.ph-text.short {
  width: 60%;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.ph-block {
  height: 40px;
  border-radius: 6px;
  background: rgba(108, 99, 255, 0.12);
  background: linear-gradient(135deg, color-mix(in srgb, var(--ph-accent) 15%, transparent), color-mix(in srgb, var(--ph-accent) 8%, transparent));
}

.ph-cta {
  height: 32px;
  width: 120px;
  border-radius: 6px;
  background: var(--ph-accent);
  opacity: 0.2;
  margin-top: auto;
}

.portfolio-badge-featured {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
}

.portfolio-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.design-samples {
  margin-top: 72px;
}

.actual-work {
  margin-top: 72px;
}

.actual-work .section-desc {
  margin-top: 12px;
}

.design-header {
  margin-bottom: 32px;
}

.design-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: var(--text);
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.actual-work-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.actual-work-group + .actual-work-group {
  margin-top: 24px;
}

.actual-work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.actual-work-heading h4 {
  font-size: 1.05rem;
  font-weight: 800;
}

.actual-work-heading p {
  max-width: 520px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.actual-work-grid {
  display: grid;
  gap: 16px;
}

.actual-work-grid-banners {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.actual-work-grid-profiles {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.actual-work-card {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.actual-work-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: linear-gradient(135deg, #FFFFFF, #F0F2FF);
  padding: 10px;
}

.actual-work-grid-profiles .actual-work-card img {
  height: 170px;
}

.actual-work-card figcaption {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  background: var(--surface);
}

.design-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.design-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 18px 0 8px;
}

.design-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

.sample-art {
  min-height: 230px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(26, 26, 46, 0.08);
}

.flyer-sample {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 251, 255, 0.9)),
    linear-gradient(135deg, #6C63FF, #00C9A7);
}

.flyer-sample::after {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.18;
}

.sample-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sample-headline {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 22px;
}

.sample-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.sample-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--border);
}

.sample-lines span:nth-child(1) { width: 86%; }
.sample-lines span:nth-child(2) { width: 70%; }
.sample-lines span:nth-child(3) { width: 52%; }

.sample-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--gradient-primary);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
}

.banner-sample {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: var(--gradient-dark);
}

.banner-sample .sample-kicker {
  color: var(--secondary);
}

.banner-headline {
  font-family: var(--font-display);
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.banner-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-warm);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transform: rotate(8deg);
}

.handout-sample {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #FFFFFF, #F0F2FF);
}

.handout-logo {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.handout-content {
  display: grid;
  gap: 10px;
}

.handout-content span {
  height: 9px;
  border-radius: 999px;
  background: var(--border);
}

.handout-content span:nth-child(1) { width: 92%; }
.handout-content span:nth-child(2) { width: 72%; }
.handout-content span:nth-child(3) { width: 55%; }

.handout-content strong {
  color: var(--primary);
  font-size: 0.86rem;
  margin-top: 8px;
}

.logo-sample {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(135deg, #1A1A2E, #2D2B55);
  text-align: center;
}

.logo-mark {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
}

.logo-text strong,
.logo-text span {
  display: block;
}

.logo-text strong {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.logo-text span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

/* ========== PROCESS ========== */
.process {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.process-step h3,
.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p,
.faq-item p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

/* ========== SIMPLE PAGES ========== */
.simple-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.simple-header {
  padding: 24px 0;
}

.simple-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.simple-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 64px 0 96px;
}

.simple-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(32px, 6vw, 56px);
}

.simple-card-narrow {
  max-width: 560px;
  text-align: center;
}

.simple-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.simple-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.simple-copy {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.simple-card h2 {
  font-size: 1.2rem;
  margin: 28px 0 8px;
}

.simple-card p,
.simple-card li {
  color: var(--text-secondary);
  line-height: 1.7;
}

.simple-card ul {
  margin: 10px 0 0 20px;
}

/* ========== WHY ME ========== */
.why {
  background: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  background: rgba(108, 99, 255, 0.1);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), color-mix(in srgb, var(--accent) 5%, transparent));
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--gradient-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.08;
  top: -200px;
  right: -100px;
  filter: blur(60px);
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.06;
  bottom: -150px;
  left: -100px;
  filter: blur(60px);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-info .contact-note {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(0, 201, 167, 0.08));
  border: 1px solid rgba(108, 99, 255, 0.18);
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 500;
}

.form-optional {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(0,201,167,0.1));
  color: var(--primary);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-method span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%238E90A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(108, 99, 255, 0.35);
  outline-offset: 3px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gradient-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}


.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== ANIMATIONS ========== */
/* Default: content is visible (safe for crawlers and no-JS).
   JS adds .js-ready to <html>, which enables the animation start state. */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-ready .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .shape {
    animation: none;
  }

  .js-ready .fade-up,
  .js-ready .fade-up.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .nav-cta:hover,
  .service-card:hover,
  .pricing-card:hover,
  .pricing-card-featured,
  .pricing-card-featured:hover,
  .portfolio-card:hover,
  .process-step:hover,
  .why-card:hover,
  .contact-method:hover {
    transform: none;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .about-grid {
    gap: 48px;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid,
  .actual-work-grid,
  .design-grid,
  .turnaround-grid,
  .process-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-6px);
  }

  .portfolio-info {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .section-desc {
    font-size: 1rem;
  }

  .navbar {
    padding: 14px 0;
  }

  .navbar.scrolled {
    padding: 10px 0;
  }

  .logo-img {
    height: 34px;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  .nav-toggle.active {
    background: var(--surface);
    border-color: var(--primary);
  }

  .nav-backdrop {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 22px 28px;
    gap: 8px;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 40px rgba(15, 18, 45, 0.18);
    opacity: 1;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 18px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 14px;
    background: var(--bg);
    border: 1px solid transparent;
    min-height: 52px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.nav-active {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(0, 201, 167, 0.08));
    border-color: rgba(108, 99, 255, 0.18);
    color: var(--primary);
  }

  .nav-cta {
    margin-top: 12px;
    justify-content: center !important;
    text-align: center;
    color: #fff !important;
    padding: 16px 18px !important;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .shape {
    filter: blur(58px);
    opacity: 0.22;
  }

  .shape-1 {
    width: 330px;
    height: 330px;
    top: -120px;
    right: -150px;
  }

  .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -110px;
    left: -150px;
  }

  .shape-3 {
    display: none;
  }

  .hero-badge {
    margin-bottom: 22px;
    font-size: 0.72rem;
    padding: 7px 14px;
  }

  .hero-title {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: 350px;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-buttons {
    gap: 12px;
    margin-bottom: 34px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-visual {
    order: 2;
  }

  .about-card-stack {
    padding: 10px;
  }

  .about-card-main {
    padding: 28px 22px;
  }

  .about-highlights {
    gap: 10px;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid,
  .actual-work-grid,
  .design-grid,
  .turnaround-grid,
  .process-grid,
  .faq-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .pricing-card,
  .why-card,
  .process-step,
  .faq-item {
    padding: 26px 22px;
  }

  .pricing-card-featured {
    box-shadow: var(--shadow-lg);
  }

  .price-amount {
    font-size: 2.55rem;
  }

  .payment-policy,
  .turnaround-box {
    padding: 22px;
  }

  .portfolio-grid {
    gap: 18px;
  }

  .portfolio-img,
  .portfolio-placeholder {
    min-height: 190px;
  }

  .portfolio-info {
    padding: 22px;
  }

  .portfolio-info h3 {
    font-size: 1.25rem;
  }

  .portfolio-badge-featured {
    top: 12px;
    right: 12px;
    font-size: 0.62rem;
    padding: 5px 10px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .design-samples {
    margin-top: 48px;
  }

  .actual-work {
    margin-top: 48px;
  }

  .actual-work-group {
    padding: 16px;
    border-radius: 14px;
  }

  .actual-work-heading {
    display: block;
  }

  .actual-work-heading p {
    margin-top: 6px;
  }

  .actual-work-card img,
  .actual-work-grid-profiles .actual-work-card img {
    height: 190px;
  }

  .actual-work-card figcaption {
    min-height: auto;
  }

  .design-grid {
    gap: 18px;
  }

  .sample-art {
    min-height: 190px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% - 8px);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px;
    gap: 10px;
    background: var(--surface);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.14);
    border: 1px solid rgba(108, 99, 255, 0.12);
  }

  .stat-divider {
    display: none;
  }

  .stat {
    background: linear-gradient(160deg, rgba(108, 99, 255, 0.06), rgba(0, 201, 167, 0.06));
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 12px;
    padding: 14px 6px;
    gap: 4px;
    text-align: center;
  }

  .stat-number {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .stat-label {
    font-size: 0.65rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }

  .cta-banner {
    padding: 68px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .contact-method {
    padding: 14px;
    align-items: flex-start;
  }

  .contact-method span {
    overflow-wrap: anywhere;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    min-height: 48px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-title br {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .btn {
    padding: 13px 22px;
  }

  .hero-stats {
    max-width: 360px;
    gap: 8px;
    padding: 12px;
  }

  .stat {
    padding: 12px 4px;
  }

  .stat-number {
    font-size: 1.05rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .about-card-main,
  .service-card,
  .pricing-card,
  .payment-policy,
  .turnaround-box,
  .why-card,
  .process-step,
  .faq-item {
    padding: 22px 18px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 2.3rem;
  }

  .portfolio-img,
  .portfolio-placeholder {
    min-height: 170px;
  }

  .portfolio-info {
    padding: 20px 18px;
  }

  .actual-work-card img,
  .actual-work-grid-profiles .actual-work-card img {
    height: 165px;
    padding: 8px;
  }

  .design-card {
    padding: 14px;
  }

  .sample-art {
    min-height: 170px;
  }

  .sample-headline {
    font-size: 1.55rem;
  }

  .handout-sample {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .handout-logo {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

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

  .simple-card {
    padding: 28px 20px;
  }
}
