/* ================================================
   PRO STOM — Vibrant Premium
   Palette: Purple-to-Pink gradient energy
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --bg: #fafafa;
  --surface: #f0f0f0;
  --accent: #7c3aed;
  --accent-hover: #9333ea;
  --text: #18181b;
  --text-muted: #71717a;
  --border: #e4e4e7;
  --gradient: linear-gradient(135deg, #7c3aed, #ec4899);
  --gradient-reverse: linear-gradient(135deg, #ec4899, #7c3aed);
  --accent-rgb: 124, 58, 237;
  --bg-rgb: 250, 250, 250;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: -0.02em;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* --- Text overflow protection --- */
.service-card,
.team-card,
.hero h1,
.section-header h2,
.section-header p,
h1, h2, h3 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* --- Container --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  gap: 24px;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(var(--bg-rgb), 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gradient) border-box;
}

.nav-brand span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(var(--bg-rgb), 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  min-height: 48px;
  min-width: 44px;
  text-align: center;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg), var(--bg)), var(--gradient);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

.btn-outline:hover {
  background-image: var(--gradient), var(--gradient);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
  min-height: 44px;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Hero CSS background — NO photo background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
  z-index: 0;
}

/* Hero decor — gradient mesh circles */
.hero-decor-1,
.hero-decor-2,
.hero-decor-3 {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-decor-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: var(--gradient);
  filter: blur(100px);
  opacity: 0.1;
}

.hero-decor-2 {
  width: 350px;
  height: 350px;
  bottom: -50px;
  left: -80px;
  background: var(--gradient-reverse);
  filter: blur(100px);
  opacity: 0.08;
}

.hero-decor-3 {
  width: 250px;
  height: 250px;
  top: 40%;
  left: 40%;
  background: var(--gradient);
  filter: blur(80px);
  opacity: 0.06;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 100px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero photo with gradient border */
.hero-photo {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius);
  padding: 3px;
  background: var(--gradient);
}

.hero-photo-frame img {
  border-radius: calc(var(--radius) - 3px);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-photo-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-photo-float .float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.hero-photo-float .float-text {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-photo-float .float-text span {
  display: block;
  color: var(--text-muted);
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 0.8rem;
}

/* ================================================
   SECTIONS — General
   ================================================ */
.section {
  position: relative;
  padding: 100px 0;
  overflow: visible;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header h2 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Section gradient divider */
.section-divider {
  width: 80px;
  height: 2px;
  background: var(--gradient);
  margin: 0 auto 60px;
  border-radius: 2px;
}

/* Section floating gradient shapes */
.section-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient);
  filter: blur(60px);
  opacity: 0.08;
  top: 10%;
  right: -100px;
}

.section-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-reverse);
  filter: blur(60px);
  opacity: 0.06;
  bottom: 20%;
  left: -80px;
}

.section-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--gradient);
  filter: blur(60px);
  opacity: 0.05;
  top: 50%;
  left: 30%;
}

/* ================================================
   SERVICES GRID
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Featured card — first child full-width horizontal */
.services-grid .service-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-left: 4px solid transparent;
  border-image: var(--gradient) 1;
}

.services-grid .service-card:first-child .service-card-img {
  height: 100%;
  min-height: 300px;
}

.services-grid .service-card:first-child .service-card-img img {
  height: 100%;
}

.services-grid .service-card:first-child .service-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

/* Standard service card */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: visible;
  position: relative;
  transition: all var(--transition);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  height: 220px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 100px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-body .service-price {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.service-card-body .service-price .old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 8px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 10px;
}

/* ================================================
   TEAM
   ================================================ */
.team-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.team-grid::-webkit-scrollbar {
  height: 4px;
}

.team-grid::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 10px;
}

.team-grid::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 10px;
}

.team-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  padding: 3px;
  background: var(--gradient);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.2);
}

.team-card-inner {
  background: #fff;
  border-radius: calc(var(--radius) - 3px);
  overflow: visible;
  text-align: center;
  padding-bottom: 24px;
}

.team-card-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 3px) calc(var(--radius) - 3px) 0 0;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.team-card:hover .team-card-photo img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 20px 20px 0;
}

.team-card-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.1) 50%, transparent);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 12px;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.04;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info p,
.contact-info a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-info a:hover {
  color: var(--accent);
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 1rem;
}

.footer-socials a:hover {
  background: var(--gradient);
  color: #fff;
}

/* ================================================
   UTP / FEATURES
   ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.feature-item {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ================================================
   PAGE HEADER (for inner pages)
   ================================================ */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}

/* ================================================
   SERVICES PAGE — FULL LIST
   ================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.service-full-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: visible;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.service-full-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-full-card:hover::before {
  opacity: 1;
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
}

.service-full-card .service-card-img {
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-full-card .service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-full-card .service-card-body {
  padding: 28px;
}

.service-full-card .service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-full-card .service-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-photo-frame img {
    height: 400px;
  }

  .hero-photo-float {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:first-child {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:first-child .service-card-img {
    min-height: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-photo-frame img {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:first-child {
    grid-column: 1;
    grid-template-columns: 1fr;
    border-left: none;
    border-top: 4px solid transparent;
    border-image: var(--gradient) 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .team-card {
    flex: 0 0 260px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 0;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 120px 0 40px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-float {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    margin-top: 16px;
  }
}
