/* ===== CSS VARIABLES ===== */
:root {
  --primary: #2d2d6a;
  --accent: #62bd91;
  --accent2: #47c3e9;
  --bg: #ffffff;
  --text: #2d2d6a;
  --text-light: #6b7a99;
  --light-bg: #f4f6fb;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(45,45,106,0.10);
  --shadow-lg: 0 12px 48px rgba(45,45,106,0.16);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { font-size: 1rem; color: var(--text-light); }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
}
.nav-top {
  display: flex; align-items: center; gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.logo-icon {
  width: 44px; height: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
.logo-icon span {
  border-radius: 3px;
  display: block;
}
.logo-icon span:nth-child(1) { background: var(--primary); }
.logo-icon span:nth-child(2) { background: var(--accent2); }
.logo-icon span:nth-child(3) { background: var(--accent); }
.logo-icon span:nth-child(4) { background: var(--primary); opacity: 0.5; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-sub { font-size: 0.6rem; font-weight: 600; letter-spacing: 2px; color: var(--accent2); text-transform: uppercase; }
.logo-tagline { font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }

.logo-copy{display:flex;flex-direction:column;line-height:1.1}
.logo-name{
  font-family:'Playfair Display', serif;font-size:1.55rem;font-weight:700;
  color:var(--primary);letter-spacing:.5px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--text-light);
  padding: 0.5rem 1rem; border-radius: 8px;
  transition: var(--transition); letter-spacing: 0.1px;
  text-transform: capitalize;
}
.nav-links a:hover {
  color: var(--accent); background: rgba(98,189,145,0.08);
}
.nav-links a.active { color: var(--primary); background: rgba(45,45,106,0.06); font-weight: 600; }
.nav-cta {
  background: var(--primary) !important; color: white !important;
  border-radius: 8px !important; padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--primary) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1a1a5e 60%, #0d2244 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("images/image3.jpg") center/cover no-repeat;
  opacity: 0.22;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle at 20% 50%, rgba(98,189,145,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(71,195,233,0.12) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; padding: 2rem 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(98,189,145,0.15); border: 1px solid rgba(98,189,145,0.3);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 { color: rgb(71, 195, 233); margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 580px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; transition: var(--transition);
  cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: #52ad81; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(98,189,145,0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }
.hero-stats {
  position: relative; z-index: 2;
  display: flex; justify-content: center; gap: 3rem;
  padding: 2rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px;
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== SECTIONS ===== */
section { padding: 5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.8rem; display: block;
}
.section-title { color: var(--primary); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-light); max-width: 560px; font-size: 1.05rem; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.divider {
  width: 48px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin: 1rem 0;
}
.centered .divider { margin: 1rem auto; }

/* ===== CARDS ===== */
.card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem; transition: var(--transition);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.5rem; color: var(--primary);
  background: linear-gradient(135deg, rgba(45,45,106,0.08), rgba(71,195,233,0.08));
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* ===== FADE IN ANIMATION ===== */
.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-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== HOMEPAGE - SERVICES PREVIEW ===== */
.services-preview { background: var(--light-bg); }
.service-card .card-icon { background: linear-gradient(135deg, rgba(45,45,106,0.1), rgba(98,189,145,0.1)); }
.service-card h3 { color: var(--primary); margin-bottom: 0.7rem; }
.service-card p { font-size: 0.93rem; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent); font-weight: 600; font-size: 0.88rem;
  margin-top: 1.2rem; transition: gap var(--transition);
}
.service-card .card-link:hover { gap: 0.8rem; }

/* ===== HOMEPAGE - WHY US ===== */
.why-us { background: var(--primary); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(98,189,145,0.08);
}
.why-us::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url("images/image2.jpg") center 20%/cover no-repeat;
  opacity: 0.14; mix-blend-mode: luminosity;
}
.why-us > .container { position: relative; z-index: 1; }
.why-us .section-label { color: var(--accent); }
.why-us .section-title { color: white; }
.why-us .section-subtitle { color: rgba(255,255,255,0.65); }
.why-us .divider { background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.8rem;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-card h3 { color: white; margin-bottom: 0.6rem; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.why-card .check { color: var(--accent); font-size: 1.3rem; margin-bottom: 1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light-bg); }
.slider-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.slider-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.slide { min-width: 100%; padding: 0 0.5rem; }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow); max-width: 700px; margin: 0 auto;
  border-left: 4px solid var(--accent); text-align: left;
}
.testimonial-card .quote { font-size: 2rem; color: var(--accent); font-family: serif; line-height: 1; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text); font-size: 1.05rem; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.author-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.author-title { font-size: 0.82rem; color: var(--text-light); }
.slider-nav { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.5rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.slider-arrows { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border);
  background: white; color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1rem;
}
.slider-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--accent), #47b87e);
  padding: 4rem 1.5rem; text-align: center;
}
.cta-band h2 { color: var(--primary); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(45,45,106,0.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band .btn-primary { background: var(--primary); color: white; }
.cta-band .btn-primary:hover { background: #1a1a5e; box-shadow: 0 8px 24px rgba(45,45,106,0.35); }

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, var(--primary), #1a1a5e); padding: 10rem 1.5rem 7rem; text-align: center; }
.about-hero h1 { color: white; }
.about-hero p { color: rgba(255,255,255,0.7); max-width: 580px; margin: 1rem auto 0; font-size: 1.1rem; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  justify-content: center; margin-bottom: 1.5rem;
}
.page-breadcrumb a { color: var(--accent); }
.page-breadcrumb span { opacity: 0.5; }

.about-intro { padding: 5rem 1.5rem; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.about-img-wrap img { border-radius: var(--radius); width: 100%; max-width: none; object-fit: cover; height: 100%; display: block; background: var(--light-bg); margin: 0; }
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--primary); color: white; border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-lg); max-width: 200px;
}
.about-img-badge .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--accent); font-weight: 700; line-height: 1; }
.about-img-badge .label { font-size: 0.8rem; opacity: 0.8; margin-top: 0.3rem; }
.mvv-section { background: var(--light-bg); }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mvv-card {
  background: white; border-radius: var(--radius); padding: 2.5rem;
  border-top: 4px solid transparent; transition: var(--transition);
  box-shadow: var(--shadow);
}
.mvv-card:nth-child(1) { border-top-color: var(--primary); }
.mvv-card:nth-child(2) { border-top-color: var(--accent); }
.mvv-card:nth-child(3) { border-top-color: var(--accent2); }
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mvv-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.mvv-card:nth-child(1) .icon { color: var(--primary); }
.mvv-card:nth-child(2) .icon { color: var(--accent); }
.mvv-card:nth-child(3) .icon { color: var(--accent2); }
.mvv-card h3 { color: var(--primary); margin-bottom: 0.8rem; }
.mvv-card p { font-size: 0.95rem; }
.team-section { }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  text-align: center; background: white; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-img { width: 100%; height: 220px; object-fit: cover; }
.team-info { padding: 1.3rem; }
.team-info h4 { color: var(--primary); margin-bottom: 0.2rem; font-size: 1rem; }
.team-info .role { font-size: 0.82rem; color: var(--accent); font-weight: 600; }
.values-section { background: var(--primary); padding: 5rem 1.5rem; }
.values-section .section-title { color: white; }
.values-section .section-label { color: var(--accent); }
.values-section .divider { background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(98,189,145,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--accent); }
.value-item h4 { color: white; font-size: 1rem; margin-bottom: 0.3rem; }
.value-item p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ===== SERVICES PAGE ===== */
.page-hero { background: linear-gradient(135deg, var(--primary), #1a1a5e); padding: 10rem 1.5rem 7rem; text-align: center; }
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 1rem auto 0; font-size: 1.1rem; }
.services-full {
  padding: 5rem 1.5rem 3rem;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f6fb 100%);
}
.services-full a.btn {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  min-width: 90px;
  width: 48%;
  max-width: 230px;
  line-height: 1.2;
  min-height: 36px;
  justify-content: center;
}
.services-full a.btn.btn-primary,
.services-full a.btn.btn-outline {
  border-radius: 10px;
}

/* ----- Service rows (clean, editorial cards) ----- */
.svc-row {
  display: flex; align-items: center; gap: 2.2rem;
  padding: 2rem; margin-bottom: 1.5rem; border: 1px solid rgba(45,45,106,0.08);
  border-radius: 24px; background: rgba(255,255,255,0.96); box-shadow: 0 10px 30px rgba(45,45,106,0.06);
  scroll-margin-top: 110px;
}
.svc-row:first-child { padding-top: 2rem; }
.svc-index {
  order: 0;
  display: inline-flex; align-self: flex-start; flex-shrink: 0; width: fit-content; margin-top: 0.2rem;
  padding: 0.35rem 0.75rem; border-radius: 999px; font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--svc-color, var(--accent));
  background: rgba(98,189,145,0.12);
}
.svc-body {
  order: 1;
  display: flex; flex: 1 1 0; flex-direction: column; justify-content: center; height: 100%;
  max-width: 560px; /* reduced content column width for larger media */
}
.svc-body .section-label {
  color: var(--text); font-size: 0.74rem; letter-spacing: 0.18em; margin-bottom: 0.75rem;
}
.svc-body h2 { color: var(--primary); margin-bottom: 0.9rem; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.svc-body p { margin-bottom: 1rem; color: var(--text-light); }
.svc-tags {
  display: flex; flex-direction: column; gap: 0.6rem; margin: 1.2rem 0 1.4rem; padding: 0;
  list-style: none;
}
.svc-tags li {
  position: relative; display: inline-flex; align-items: center; width: fit-content;
  padding: 0.45rem 0.7rem 0.45rem 1.05rem; font-size: 0.9rem; font-weight: 600;
  color: var(--text-light); background: rgba(45, 45, 106, 0.04); border-radius: 999px;
}
.svc-tags li::before {
  content: '•'; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  color: var(--svc-color, var(--accent)); font-size: 1rem; line-height: 1;
}
.svc-media {
  order: 2;
  position: relative; display: flex; justify-content: center; align-items: center;
  flex: 0 0 460px; min-height: 420px; padding: 0.5rem; height: 100%;
}
.svc-media img {
  border-radius: 18px; width: 100%; height: 100%; max-width: 520px; object-fit: contain; position: relative; z-index: 1;
  box-shadow: 0 14px 32px rgba(45,45,106,0.16);
}
.svc-media::before {
  content: ''; position: absolute; inset: 1rem 0.6rem 0.6rem 1rem; z-index: 0;
  border-radius: 22px; background: linear-gradient(135deg, rgba(98,189,145,0.14), rgba(71,195,233,0.12));
}

/* ----- Process (ledger list, no circles/connector) ----- */
.process-section { background: var(--light-bg); }
.process-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }
.process-media { border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 380px; }
.process-media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block; }
.process-list { border-top: 1px solid var(--border); }
.process-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border); align-items: baseline;
}
.process-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--accent); opacity: 0.5; }
.process-row h4 { color: var(--primary); margin-bottom: 0.4rem; font-size: 1.1rem; }
.process-row p { font-size: 0.92rem; max-width: 520px; }
.pricing-section { }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card {
  background: white; border-radius: var(--radius);
  border: 2px solid var(--border); padding: 2.5rem;
  text-align: center; transition: var(--transition); position: relative; overflow: hidden;
}
.pricing-card.featured { border-color: var(--accent); transform: scale(1.04); }
.pricing-badge {
  position: absolute; top: 1.2rem; right: -1.5rem;
  background: var(--accent); color: var(--primary);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  padding: 0.3rem 2rem; transform: rotate(45deg); transform-origin: center;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
.pricing-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 2rem; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pricing-features { text-align: left; margin: 1.8rem 0; }
.pricing-features li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ===== PORTFOLIO PAGE ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer; background: var(--primary);
}
.portfolio-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,45,106,0.9) 0%, transparent 60%);
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: white; font-size: 1.1rem; margin-bottom: 0.3rem; }
.portfolio-overlay .tag { background: var(--accent); color: var(--primary); border-radius: 100px; padding: 0.2rem 0.8rem; font-size: 0.75rem; font-weight: 600; display: inline-block; }
.portfolio-filter { display: flex; gap: 0.7rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
  border: 2px solid var(--border); cursor: pointer; transition: var(--transition);
  background: white; color: var(--text-light);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.clients-section { background: var(--light-bg); padding: 4rem 1.5rem; }
.clients-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem; margin-top: 2.5rem; }
.client-logo {
  background: linear-gradient(135deg, rgba(98, 189, 145, 0.14), rgba(71, 195, 233, 0.14));
  border-radius: 10px; padding: 1rem 1.5rem;
  border: 1px solid rgba(98, 189, 145, 0.25); color: var(--primary);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px;
  transition: var(--transition);
}
.client-logo:hover {
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; }
.contact-info-block { }
.contact-photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 1rem;
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(45,45,106,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  color: var(--primary);
}
.contact-info-item h4 { color: var(--primary); margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-info-item p { font-size: 0.9rem; margin: 0; }
.contact-form-card { background: white; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--border); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
  transition: var(--transition); outline: none; background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(98,189,145,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 0.78rem; color: #e53e3e; margin-top: 0.3rem; display: none; }
.form-success {
  display: none; background: rgba(98,189,145,0.1); border: 1px solid var(--accent);
  border-radius: 8px; padding: 1rem 1.5rem; color: var(--primary); font-weight: 500;
  margin-top: 1rem; font-size: 0.95rem;
}
.map-section { padding: 0 1.5rem 5rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.faq-section { background: var(--light-bg); }
.faq-item {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  margin-bottom: 1rem; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem; cursor: pointer; user-select: none;
}
.faq-question h4 { color: var(--primary); font-size: 0.98rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--primary); transition: transform var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.3rem; font-size: 0.93rem; color: var(--text-light); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== SOCIAL ===== */
.social-links { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15); transition: var(--transition);
  font-size: 0.95rem;
}
.social-link:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.contact-info-block .social-link {
  background: var(--primary);
  color: white;
  border-color: transparent;
}
.contact-info-block .social-link:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary); color: white; padding: 4rem 1.5rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-about .logo-wrap { margin-bottom: 1.2rem; }
.footer-about .logo-name { color: white; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem; font-family: 'DM Sans', sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact p svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; }
.footer-bottom-links {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary); color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: var(--transition);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  font-size: 1.2rem;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4, .team-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-row, .svc-row:nth-child(even) { flex-direction: column; gap: 1.5rem; }
  .svc-row:nth-child(even) .svc-media { order: 0; }
  .svc-media { flex-basis: auto; width: 100%; }
  .process-layout { grid-template-columns: 1fr; gap: 2rem; }
  .process-media { min-height: 260px; }
  .process-media img { min-height: 260px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; flex-basis: 100%; width: 100%; padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--border); gap: 0.2rem; margin-top: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; }
  .grid-3, .mvv-grid, .values-grid, .grid-2 { grid-template-columns: 1fr; }
  .about-intro-grid, .contact-layout { grid-template-columns: 1fr; }
  .about-img-badge { position: static; margin-top: 1rem; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  section { padding: 3.5rem 1.2rem; }
  .process-row { grid-template-columns: 1fr; gap: 0.4rem; }
}
@media (max-width: 480px) {
  .grid-4, .team-grid { grid-template-columns: 1fr; }
}
