/* Summerzonemarketing — Premium SMM Agency Styles */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@500;600;700;800&display=swap');

:root {
  --color-white: #ffffff;
  --color-grey-50: #f8f9fc;
  --color-grey-100: #eef1f6;
  --color-grey-200: #dde3ed;
  --color-grey-400: #8b95a8;
  --color-grey-600: #4a5568;
  --color-grey-800: #1a2332;
  --color-navy: #0b1a2e;
  --color-navy-mid: #152a45;
  --color-navy-light: #1e3a5f;
  --color-cyan: #00d4ff;
  --color-cyan-dark: #00b8e0;
  --gradient-brand: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
  --gradient-hero: linear-gradient(160deg, #0b1a2e 0%, #1e3a5f 45%, #2d1b4e 100%);
  --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0.08) 50%, rgba(249, 115, 22, 0.08) 100%);
  --shadow-sm: 0 2px 8px rgba(11, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 26, 46, 0.1);
  --shadow-lg: 0 20px 60px rgba(11, 26, 46, 0.15);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.25);
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-grey-800);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-navy-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-cyan-dark);
}

ul {
  list-style: none;
}

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

.section {
  padding: 96px 0;
}

.section--grey {
  background: var(--color-grey-50);
}

.section--navy {
  background: var(--gradient-hero);
  color: var(--color-white);
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 16px;
}

.section--navy .section__label {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 20px;
}
@media (max-width:650px){
.section__title{
font-size:1.5em;
}
}
.section--navy .section__title {
  color: var(--color-white);
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--color-grey-600);
  max-width: 640px;
}

.section--navy .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

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

.section__header .section__subtitle {
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 26, 46, 0.06);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-grey-800);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-navy);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

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

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

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

.btn--primary {
  background: var(--color-cyan);
  color: var(--color-navy);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  background: var(--color-cyan-dark);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
}

.btn--gradient {
  background: var(--gradient-brand);
  color: var(--color-white);
}

.btn--gradient:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn--outline:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  background: rgba(0, 212, 255, 0.08);
}

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

.btn--navy:hover {
  background: var(--color-navy-mid);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-cyan);
  border-radius: 50%;
  animation: pulse 2s 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.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 24px;
}

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

.hero__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 520px;
}

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

.hero__visual {
  position: relative;
}

.hero__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stats {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 32px;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--color-grey-400);
  margin-top: 4px;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
}

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

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}
@media (max-width:450px){
.page-hero__title{
font-size:1.5em;
}
}
.page-hero__text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-grey-100);
  transition: all var(--transition);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-grey-600);
}

.card--image {
  padding: 0;
  overflow: hidden;
}

.card--image .card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card--image .card__body {
  padding: 28px;
}

/* Service cards */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-grey-100);
  transition: all var(--transition);
}

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

.service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__content {
  padding: 32px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.service-card__text {
  color: var(--color-grey-600);
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split--reverse .split__image-wrap {
  order: 2;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--color-grey-600);
  margin-top: 8px;
}

/* Case studies */
.case-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.case-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.case-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.case-card__body {
  padding: 28px;
}

.case-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gradient-soft);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-navy-light);
  margin-bottom: 12px;
}

.case-card__metrics {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-grey-100);
}

.case-card__metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-cyan-dark);
}

.case-card__metric span {
  font-size: 0.75rem;
  color: var(--color-grey-400);
}

/* Testimonials */
.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-grey-100);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 16px;
  left: 28px;
  opacity: 0.4;
}

.testimonial__text {
  font-size: 1rem;
  color: var(--color-grey-600);
  margin-bottom: 24px;
  padding-top: 24px;
  font-style: italic;
}

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__name {
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--color-grey-400);
}

/* Team */
.team-card {
  text-align: center;
}

.team-card__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
}

.team-card__role {
  font-size: 0.875rem;
  color: var(--color-grey-400);
  margin-top: 4px;
}

/* Values */
.value-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-grey-100);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cyan-dark);
  flex-shrink: 0;
}

.value-item__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.value-item__text {
  font-size: 0.9375rem;
  color: var(--color-grey-600);
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
}

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

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  word-break: break-all;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-info__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-grey-400);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--color-navy);
}

/* Forms */
.form {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-grey-100);
}

.form__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form__subtitle {
  font-size: 0.9375rem;
  color: var(--color-grey-600);
  margin-bottom: 32px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-grey-800);
  background: var(--color-grey-50);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-cyan);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

.form__input--error,
.form__textarea--error,
.form__select--error {
  border-color: #ef4444;
  background: #fef2f2;
}

.form__textarea--error {
  border-color: #ef4444;
  background: #fef2f2;
}

.form__select--error {
  border-color: #ef4444;
  background: #fef2f2;
}

.form__error {
  display: none;
  font-size: 0.8125rem;
  color: #ef4444;
  margin-top: 6px;
}

.form__error--visible {
  display: block;
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

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

/* Legal content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 40px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--color-grey-600);
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-hero-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}

/* Footer */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer__contact p {
  font-size: 0.9375rem;
  margin-bottom: 10px;
}

.footer__contact a {
  color: var(--color-cyan);
}

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

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 46, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay--visible .modal {
  transform: scale(1) translateY(0);
}

.modal--success {
  text-align: center;
  max-width: 440px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-grey-50);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-grey-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal__close:hover {
  background: var(--color-grey-100);
  color: var(--color-navy);
}

.modal__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.modal__text {
  color: var(--color-grey-600);
  margin-bottom: 28px;
}

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

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

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* Logo strip */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.logo-strip__item {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-grey-400);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid,
  .page-hero__grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--reverse .split__image-wrap {
    order: 0;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__stats {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav__list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav__list--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list li {
    border-bottom: 1px solid var(--color-grey-100);
  }

  .nav__link {
    display: block;
    padding: 16px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav .btn {
    display: none;
  }

  .nav__list--open + .btn,
  .nav--mobile-cta .btn--mobile {
    display: inline-flex;
    margin-top: 16px;
  }

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

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
    margin-top: -40px;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }

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

/* Utility classes */
.mt-16 { margin-top: 16px; }
.mt-28 { margin-top: 28px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mb-24 { margin-bottom: 24px; }
.mb-36 { margin-bottom: 36px; }
.btn--full { width: 100%; }
.btn--full-mb { width: 100%; margin-bottom: 12px; }
.flex-wrap-gap { display: flex; gap: 12px; flex-wrap: wrap; }
.flex-wrap-gap--center { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.text-center { text-align: center; }
.max-w-720 { max-width: 720px; margin: 0 auto; }
.card--padded { padding: 40px; }
.card--center { padding: 40px; text-align: center; }
.card__title--lg { font-size: 1.5rem; margin-bottom: 16px; }
.services-cta-card { padding: 40px; }
.process-list { margin-top: 32px; }
.services-hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.section-image-wide { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 0 auto; max-width: 900px; }
.section-image-wrap { margin-top: 48px; text-align: center; }
