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

:root {
  /* Colors — dark gray + sky blue + light red */
  --charcoal: #2b2b2b;
  --dark: #1e1e1e;
  --darker: #151515;
  --accent: #5bade0;
  --accent-hover: #4a9ad0;
  --accent-light: rgba(91, 173, 224, 0.1);
  --accent-red: #e07070;
  --accent-red-light: rgba(224, 112, 112, 0.1);
  --light: #f7f8fa;
  --white: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --card-bg: #ffffff;

  /* Shadows — layered for depth */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08), 0 20px 50px rgba(0, 0, 0, 0.06);

  /* Spacing — 8dp rhythm */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--dark);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.logo {
  font-family: 'Times New Roman', Times, serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding: var(--space-1) 0;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: var(--text-sm) !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-2);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-24) 0 var(--space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(91, 173, 224, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(224, 112, 112, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(91, 173, 224, 0.1);
  border: 1px solid rgba(91, 173, 224, 0.2);
  color: var(--accent);
  padding: var(--space-2) var(--space-4);
  border-radius: 50px;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  letter-spacing: -1.5px;
  line-height: 1.15;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.01em;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 173, 224, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SVG ICONS ===== */
.icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.icon-svg-lg {
  width: 40px;
  height: 40px;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-20) 0;
}

.section-alt {
  background: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FEATURES / SELLING POINTS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: var(--card-bg);
  padding: var(--space-8);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--accent);
  background: var(--accent-light);
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ===== SERVICES PAGE ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--card-bg);
  padding: var(--space-8);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--accent);
  background: var(--accent-light);
}

.service-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.service-card .price {
  display: inline-block;
  margin-top: var(--space-4);
  font-weight: 700;
  color: var(--accent-red);
  font-size: var(--text-base);
  font-family: 'Poppins', sans-serif;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.portfolio-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.portfolio-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.portfolio-thumb {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d3748 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-info {
  padding: var(--space-5);
}

.portfolio-info h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.portfolio-tag {
  display: inline-block;
  margin-top: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: var(--accent-red-light);
  border-radius: 50px;
  font-size: var(--text-xs);
  color: var(--accent-red);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}

.about-photo {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.about-text .highlight {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.contact-info > p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  color: var(--text-primary);
  font-size: var(--text-base);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--card-bg);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-family: 'Open Sans', sans-serif;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

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

.contact-form .btn {
  width: 100%;
  padding: 14px;
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Required asterisk */
.required {
  color: var(--accent-red);
}

/* Field error messages */
.field-error {
  display: none;
  color: var(--accent-red);
  font-size: var(--text-xs);
  margin-top: var(--space-1);
  font-weight: 500;
}

.form-group.error .field-error {
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--accent-red);
}

.form-group.error input:focus,
.form-group.error textarea:focus {
  box-shadow: 0 0 0 3px var(--accent-red-light);
}

/* Form status message */
.form-status {
  display: none;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.error {
  display: block;
  background: var(--accent-red-light);
  color: var(--accent-red);
  border: 1px solid rgba(224, 112, 112, 0.2);
}

/* ===== SHOWCASE / OUR WORK ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.showcase-card {
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--card-bg);
  cursor: pointer;
}

.showcase-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.showcase-preview {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.showcase-pro {
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2a42 100%);
}

.showcase-anim {
  background: #0a0a0a;
}

.showcase-simple {
  background: #fafbfc;
}

.showcase-mock-nav {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  margin-bottom: 24px;
  opacity: 0.15;
}

.showcase-pro .showcase-mock-nav { background: #c9a84c; opacity: 0.3; }
.showcase-anim .showcase-mock-nav { background: #00d4ff; opacity: 0.3; }
.showcase-simple .showcase-mock-nav { background: #2d8a4e; opacity: 0.3; }

.showcase-mock-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 8px;
}

.showcase-mock-line {
  height: 8px;
  border-radius: 4px;
  opacity: 0.2;
}

.showcase-mock-line.w60 { width: 60%; }
.showcase-mock-line.w40 { width: 40%; }

.showcase-pro .showcase-mock-line { background: #ffffff; }
.showcase-anim .showcase-mock-line { background: linear-gradient(90deg, #00d4ff, #ff2d7b); opacity: 0.4; }
.showcase-simple .showcase-mock-line { background: #1a2b1f; }

.showcase-mock-btn {
  width: 48px;
  height: 12px;
  border-radius: 6px;
  margin-top: 4px;
}

.showcase-pro .showcase-mock-btn { background: #c9a84c; opacity: 0.6; }
.showcase-anim .showcase-mock-btn { background: #00d4ff; opacity: 0.5; box-shadow: 0 0 10px rgba(0,212,255,0.3); }
.showcase-simple .showcase-mock-btn { background: #2d8a4e; opacity: 0.5; }

.showcase-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.showcase-orb.orb-1 {
  width: 80px;
  height: 80px;
  background: #00d4ff;
  opacity: 0.15;
  top: 20px;
  left: -10px;
  animation: float 6s ease-in-out infinite;
}

.showcase-orb.orb-2 {
  width: 60px;
  height: 60px;
  background: #ff2d7b;
  opacity: 0.12;
  bottom: 10px;
  right: 0;
  animation: float 5s ease-in-out infinite 1s;
}

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

.showcase-info {
  padding: var(--space-5);
}

.showcase-info h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}

.showcase-info p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.showcase-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}

.tag-pro {
  background: rgba(201, 168, 76, 0.1);
  color: #b8973f;
}

.tag-anim {
  background: rgba(0, 212, 255, 0.1);
  color: #00b8db;
}

.tag-simple {
  background: rgba(45, 138, 78, 0.1);
  color: #2d8a4e;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(91, 173, 224, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.5px;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker);
  color: var(--text-muted);
  padding: var(--space-10) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  font-size: var(--text-sm);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}

.footer-links a {
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 30%, rgba(91, 173, 224, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.5px;
}

.page-header p {
  color: var(--text-muted);
  font-size: var(--text-lg);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding: var(--space-12) 0;
  text-align: center;
}

.stat-item h3 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-1);
  font-family: 'Poppins', sans-serif;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== PROCESS SECTION ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  counter-reset: process;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  margin: 0 auto var(--space-4);
}

.process-step h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: var(--space-5) var(--space-6);
    gap: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
    width: 100%;
  }

  .hero {
    padding: var(--space-16) 0 var(--space-12);
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .hero p {
    font-size: var(--text-base);
  }

  .features-grid,
  .portfolio-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .about-photo {
    height: 300px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: var(--space-12) 0 var(--space-8);
  }

  .page-header h1 {
    font-size: var(--text-3xl);
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-banner {
    padding: var(--space-12) 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: var(--text-2xl);
  }

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

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