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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Public Sans', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Geometric Background Shapes */
.geo-shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

.geo-shape--1 {
  width: 500px;
  height: 500px;
  background: var(--teal-500);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.geo-shape--2 {
  width: 300px;
  height: 300px;
  background: var(--teal-400);
  top: 50%;
  left: -80px;
  transform: rotate(45deg);
  border-radius: var(--radius-lg);
}

.geo-shape--3 {
  width: 200px;
  height: 200px;
  background: var(--teal-600);
  bottom: 10%;
  right: 5%;
  border-radius: 50%;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1001;
}

.logo__mark {
  width: 40px;
  height: 40px;
  background: var(--teal-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: white;
  transform: rotate(-3deg);
  transition: var(--transition);
}

.logo:hover .logo__mark {
  transform: rotate(0deg) scale(1.05);
}

.logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.logo__accent {
  color: var(--teal-600);
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: var(--slate-600);
  font-weight: 500;
  font-size: 0.938rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}

.nav__link--cta {
  background: var(--teal-600);
  color: white !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__bar {
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-600);
  color: white;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn--primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-700);
  border: 2px solid var(--slate-300);
}

.btn--ghost:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
  background: var(--teal-50);
}

.btn--full {
  width: 100%;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.813rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-title--accent {
  color: var(--teal-600);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, var(--teal-50) 0%, transparent 40%),
    linear-gradient(225deg, var(--slate-100) 0%, transparent 40%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--slate-200);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--slate-900);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero__title--accent {
  color: var(--teal-600);
  display: block;
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal-600);
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 0.813rem;
  color: var(--slate-500);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-200);
}

/* Hero Image */
.hero__image {
  position: relative;
}

.hero__image-geo {
  position: absolute;
  border-radius: var(--radius-lg);
}

.hero__image-geo--1 {
  width: 120px;
  height: 120px;
  background: var(--teal-400);
  top: -30px;
  right: -30px;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.hero__image-geo--2 {
  width: 80px;
  height: 80px;
  background: var(--teal-600);
  bottom: 40px;
  left: -20px;
  opacity: 0.3;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.hero__image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5/6;
  object-fit: cover;
}

.hero__image-float {
  position: absolute;
  bottom: 60px;
  left: -40px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.hero__float-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  flex-shrink: 0;
}

.hero__image-float strong {
  display: block;
  font-size: 0.875rem;
  color: var(--slate-800);
}

.hero__image-float span {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* Services Section */
.services {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--slate-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.service-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--teal-100) 0%, transparent 70%);
  border-radius: 0 var(--radius-lg) 0 100%;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-card__desc {
  color: var(--slate-600);
  font-size: 0.938rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* About Section */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.about__image-side {
  position: relative;
}

.about__image-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.about__image-block img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 13/16;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--teal-600);
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: 0.15;
}

.about__content {
  max-width: 480px;
}

.about__text {
  color: var(--slate-600);
  font-size: 1.063rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--slate-700);
}

.about__value-icon {
  width: 28px;
  height: 28px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  flex-shrink: 0;
}

/* Projects Section */
.projects {
  padding: 100px 0;
  background: var(--slate-900);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.projects::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--teal-600);
  border-radius: 50%;
  opacity: 0.08;
}

.projects .section-tag {
  background: rgba(13, 148, 136, 0.2);
  border-color: rgba(13, 148, 136, 0.4);
  color: var(--teal-400);
}

.projects .section-title {
  color: white;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: var(--teal-600);
}

.project-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card__img img {
  transform: scale(1.08);
}

.project-card__info {
  padding: 24px;
}

.project-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-400);
  background: rgba(13, 148, 136, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.project-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.project-card__name + p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--slate-100);
  transition: var(--transition);
  position: relative;
}

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

.testimonial-card__quote {
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-size: 0.938rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--slate-800);
}

.testimonial-card__author span {
  font-size: 0.813rem;
  color: var(--slate-400);
}

/* CTA / Contact Section */
.cta {
  padding: 100px 0;
  background: var(--teal-700);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: var(--teal-500);
  border-radius: 50%;
  opacity: 0.2;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: var(--teal-800);
  border-radius: 50%;
  opacity: 0.3;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta__content {
  color: white;
}

.cta__content .section-tag {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.cta__content .section-title {
  color: white;
}

.cta__text {
  font-size: 1.063rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  margin-top: 20px;
}

.cta__contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cta__contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.cta__contact-item strong {
  display: block;
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.cta__contact-item span,
.cta__contact-item a {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.cta__contact-item a:hover {
  color: var(--teal-200);
}

/* Form */
.cta__form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.cta__form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.938rem;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--teal-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder {
  color: var(--slate-400);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  margin: 0 auto 20px;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--slate-500);
  font-size: 0.938rem;
}

/* Footer */
.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 64px 0 0;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--slate-800);
}

.footer__tagline {
  font-size: 0.938rem;
  line-height: 1.7;
  margin-top: 16px;
  color: var(--slate-500);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.938rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--teal-400);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.938rem;
}

.footer__contact a {
  color: var(--slate-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer__contact a:hover {
  color: var(--teal-400);
}

.footer__bottom {
  padding: 24px 0;
}

.footer__bottom-inner {
  text-align: center;
  font-size: 0.813rem;
  color: var(--slate-600);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 40px;
  }

  .hero__image-float {
    left: -10px;
  }

  .about__inner {
    gap: 48px;
  }
}

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

  .nav__list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav__list.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.25rem;
    padding: 12px 24px;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    padding: 0;
  }

  .hero__image {
    order: -1;
  }

  .hero__image-float {
    left: 10px;
    bottom: 20px;
  }

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

  .service-card--featured {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-side {
    max-width: 400px;
    margin: 0 auto;
  }

  .projects__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .cta__form-card {
    padding: 24px;
  }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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