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

:root {
  --midnight: #0A2540;
  --midnight-light: #113A5C;
  --midnight-dark: #061A2E;
  --mint: #2DD4BF;
  --mint-light: #5EEAD4;
  --mint-dark: #14B8A6;
  --cream: #F0FDFA;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(10,37,64,0.08);
  --shadow-md: 0 4px 20px rgba(10,37,64,0.12);
  --shadow-lg: 0 12px 40px rgba(10,37,64,0.16);
  --shadow-xl: 0 20px 60px rgba(10,37,64,0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

/* Background shapes */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.bg-shape-1 {
  width: 800px;
  height: 800px;
  background: var(--mint);
  top: -200px;
  right: -200px;
}
.bg-shape-2 {
  width: 600px;
  height: 600px;
  background: var(--mint);
  bottom: 10%;
  left: -150px;
}

/* Tags */
.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--mint);
  color: var(--midnight);
}
.tag-mint {
  background: var(--mint);
  color: var(--midnight);
}
.tag-dark {
  background: var(--midnight);
  color: var(--mint);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-mint {
  background: var(--mint);
  color: var(--midnight);
  border-color: var(--mint);
}
.btn-mint:hover {
  background: var(--mint-light);
  border-color: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,212,191,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-full {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(240,253,250,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,37,64,0.06);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(240,253,250,0.95);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--midnight);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.logo-light .logo-text {
  color: var(--white);
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 16px;
}
.nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav a:hover {
  color: var(--midnight);
  background: rgba(45,212,191,0.12);
}
.btn-header {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--midnight);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav-overlay.open {
  display: flex;
}
.mobile-nav-overlay a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}
.mobile-nav-overlay a:hover {
  color: var(--mint);
  background: rgba(45,212,191,0.1);
}

/* Hero */
.hero {
  position: relative;
  background: var(--midnight);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,37,64,0.95) 0%, rgba(10,37,64,0.7) 50%, rgba(45,212,191,0.15) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.06;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 120px;
}
.hero-left {
  max-width: 560px;
}
.hero-left .tag {
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 span {
  color: var(--mint);
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mint);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero image stack */
.hero-right {
  position: relative;
}
.hero-img-stack {
  position: relative;
  height: 680px;
}
.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: absolute;
  box-shadow: var(--shadow-xl);
}
.hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-main {
  width: 380px;
  height: 520px;
  top: 40px;
  right: 0;
  z-index: 2;
}
.hero-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(45,212,191,0.2);
  pointer-events: none;
}
.hero-img-float {
  width: 240px;
  height: 200px;
  bottom: 60px;
  left: -20px;
  z-index: 3;
  border: 4px solid var(--midnight);
}
.hero-badge {
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--mint);
  color: var(--midnight);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* Section header */
.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header .tag {
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mint);
}
.service-card--featured {
  background: var(--midnight);
  border-color: var(--midnight);
  grid-row: span 1;
}
.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-list li {
  color: var(--white);
}
.service-card--featured .service-list li {
  color: rgba(255,255,255,0.7);
}
.service-card--featured .service-list li::before {
  color: var(--mint);
}
.service-card--featured .service-icon svg {
  stroke: var(--mint);
}
.service-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--mint);
  opacity: 0.08;
  border-radius: 0 var(--radius-xl) 0 80px;
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,212,191,0.12);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.service-card--featured .service-icon {
  background: rgba(45,212,191,0.2);
}
.service-icon svg {
  stroke: var(--midnight);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  font-size: 0.7rem;
  top: 2px;
}

/* Gallery */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 48px;
}
.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}
.gallery-item--wide {
  grid-column: span 7;
  height: 340px;
}
.gallery-item--tall {
  grid-column: span 5;
  height: 380px;
}
.gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
  height: 240px;
}
.gallery-cta {
  text-align: center;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  height: 700px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
}
.about-img-secondary img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-shape {
  position: absolute;
  top: -30px;
  right: 40%;
  width: 120px;
  height: 120px;
  background: var(--mint);
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  opacity: 0.3;
  z-index: -1;
}
.about-content .tag {
  margin-bottom: 16px;
}
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-800);
}
.about-feature svg {
  flex-shrink: 0;
}

/* Process */
.process {
  padding: 100px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.05;
}
.process .section-header h2 {
  color: var(--white);
}
.process .section-header p {
  color: rgba(255,255,255,0.6);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--mint);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.step-line, .step-line-end {
  position: absolute;
  top: 36px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: rgba(45,212,191,0.3);
}
.step-line-end {
  background: transparent;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--cream);
}
.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.cta-left {
  background: var(--midnight);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.cta-left::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.08;
}
.cta-left .tag {
  align-self: flex-start;
}
.cta-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta-left p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.cta-left a {
  color: var(--mint);
  text-decoration: none;
}
.cta-left a:hover {
  text-decoration: underline;
}
.cta-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.cta-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.cta-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.cta-right h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45,212,191,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success.show {
  display: flex;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: var(--midnight-dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul a:hover {
  color: var(--mint);
}
.footer-col ul li span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.footer-note {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 12px !important;
}
.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom a:hover {
  color: var(--mint);
}

/* Animations */
.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);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right {
    display: none;
  }
  .hero h1 {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:last-child {
    grid-column: span 2;
  }
  .about-grid {
    gap: 48px;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .step-line, .step-line-end {
    display: none;
  }
  .cta-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav, .btn-header {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card:last-child {
    grid-column: span 1;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    height: 240px;
  }
  .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
    height: 200px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    height: 400px;
    order: -1;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-left {
    padding: 40px 28px;
  }
  .cta-right {
    padding: 32px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide,
  .gallery-item--tall {
    height: 260px;
  }
}
