/* ============================================================
   NEXYRA LIMITED — Shared Stylesheet
============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --orange: #FF6B2C;
  --orange-dark: #E85520;
  --orange-light: rgba(255, 107, 44, 0.1);
  --white: #FFFFFF;
  --dark: #111111;
  --dark-2: #1C1C1C;
  --grey-bg: #F8F8F8;
  --grey-light: #EFEFEF;
  --grey-mid: #D0D0D0;
  --grey-text: #666666;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,44,0.35);
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.section-title span { color: var(--orange); }
.section-desc { font-size: 17px; color: var(--grey-text); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; color: var(--orange); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 28px;
  border-top: 1px solid var(--grey-light);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--dark); padding: 12px 0; border-bottom: 1px solid var(--grey-light); transition: color var(--transition); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ============================================================
   PAGE HERO (inner pages shared)
============================================================ */
.page-hero {
  height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  margin-top: 74px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.45) 55%, rgba(17,17,17,0.2) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 64px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 540px; line-height: 1.7; }

/* ============================================================
   FOOTER
============================================================ */
footer { background: var(--dark); color: var(--white); padding: 88px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo { font-size: 24px; display: block; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.75; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   HOME — HERO
============================================================ */
.home-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 74px;
  overflow: hidden;
}
.home-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.home-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.7) 55%, rgba(17,17,17,0.35) 100%);
}
.home-hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,44,0.15);
  border: 1px solid rgba(255,107,44,0.45);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeIn 1s ease 0.2s both;
}
.home-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.home-hero h1 span { color: var(--orange); }
.home-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.9s ease 0.8s both; }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent); }

/* HOME — About Snapshot */
.about-snapshot { padding: 120px 0; background: var(--white); }
.snapshot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.snapshot-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; margin-bottom: 18px; line-height: 1.18; }
.snapshot-text h2 span { color: var(--orange); }
.snapshot-text p { font-size: 15px; color: var(--grey-text); line-height: 1.8; margin-bottom: 14px; }
.snapshot-text .btn { margin-top: 20px; }
.snapshot-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 440px; }
.snapshot-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.snapshot-image:hover img { transform: scale(1.04); }
.snapshot-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
}
.snapshot-badge .num { font-size: 30px; font-weight: 800; display: block; line-height: 1; }
.snapshot-badge .lbl { font-size: 12px; opacity: 0.85; }

/* HOME — Services Preview */
.services-preview { padding: 0 0 120px; background: var(--grey-bg); }
.services-preview .section-header { padding-top: 120px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-icon {
  width: 54px; height: 54px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: var(--white); }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { font-size: 14px; color: var(--grey-text); line-height: 1.65; }

/* HOME — Stats Bar */
.stats-bar { background: var(--dark); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

/* HOME — Testimonials */
.testimonials { padding: 120px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.quote-icon { color: var(--orange); margin-bottom: 18px; opacity: 0.5; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.star { color: var(--orange); font-size: 15px; }
.testimonial-text { font-size: 15px; color: var(--dark); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-name { font-size: 14px; font-weight: 700; color: var(--dark); display: block; }
.author-role { font-size: 12px; color: var(--grey-text); display: block; }

/* HOME — CTA Banner */
.cta-banner { background: linear-gradient(130deg, #FF6B2C 0%, #FF8C55 100%); padding: 100px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.82); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-banner .btn-outline { border-color: var(--white); padding: 16px 44px; font-size: 16px; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-story { padding: 120px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.story-image { border-radius: var(--radius-lg); overflow: hidden; height: 500px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 18px; }
.story-text h2 span { color: var(--orange); }
.story-text p { font-size: 15px; color: var(--grey-text); line-height: 1.8; margin-bottom: 14px; }

.why-choose { padding: 120px 0; background: var(--grey-bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
  width: 50px; height: 50px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--orange); color: var(--white); }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--grey-text); line-height: 1.65; }

.company-details { padding: 80px 0; background: var(--white); }
.details-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--white);
}
.details-card-title { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 40px; }
.details-card-title span { color: var(--orange); }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.detail-item { display: flex; flex-direction: column; gap: 5px; }
.detail-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.detail-value { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.45; }
.detail-value.live { color: #4ade80; font-weight: 700; }
.detail-value.orange { color: var(--orange); font-weight: 700; }

.team-section { padding: 120px 0; background: var(--grey-bg); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey-light); transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-photo { height: 270px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-info { padding: 22px; }
.team-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--grey-text); line-height: 1.55; }

.values-section { padding: 120px 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 52px 24px; border-radius: var(--radius); background: var(--grey-bg); border: 1px solid var(--grey-light); transition: var(--transition); }
.value-card:hover { border-color: var(--orange); background: var(--white); box-shadow: var(--shadow); }
.value-icon {
  width: 64px; height: 64px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.value-card:hover .value-icon { background: var(--orange); color: var(--white); }
.value-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--grey-text); line-height: 1.65; }

/* ============================================================
   SERVICES PAGE
============================================================ */
.services-intro-section { padding: 80px 0 40px; }
.services-intro-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.services-intro-inner p { font-size: 17px; color: var(--grey-text); line-height: 1.8; }

.services-full { padding: 60px 0 120px; background: var(--grey-bg); }
.services-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-full-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.service-full-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-full-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; margin-top: 16px; }
.service-full-card p { font-size: 13px; color: var(--grey-text); line-height: 1.65; }

.how-we-work { padding: 120px 0; background: var(--dark); }
.how-we-work .section-title { color: var(--white); }
.how-we-work .section-desc { color: rgba(255,255,255,0.5); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(255,107,44,0.15));
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.step-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

.pricing-section { padding: 120px 0; background: var(--grey-bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--grey-light);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pricing-card.popular { border-color: var(--orange); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.pricing-currency { font-size: 22px; font-weight: 700; color: var(--orange); }
.pricing-amount { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--dark); line-height: 1; }
.pricing-period { font-size: 14px; color: var(--grey-text); }
.pricing-desc { font-size: 13px; color: var(--grey-text); margin: 12px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--grey-light); line-height: 1.6; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--dark); line-height: 1.45; }
.pricing-feature .check { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section { padding: 100px 0 120px; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; }
.contact-form-wrap h2 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.contact-form-wrap h2 span { color: var(--orange); }
.contact-form-wrap > p { font-size: 15px; color: var(--grey-text); margin-bottom: 36px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,44,0.09); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 15px; margin-top: 4px; }

.contact-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.contact-info-blocks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-info-block {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.contact-info-block:hover { border-color: var(--orange); }
.info-icon {
  width: 44px; height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.info-block-title { font-size: 11px; font-weight: 700; color: var(--grey-text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.info-block-value { font-size: 14px; color: var(--dark); line-height: 1.5; }
.map-placeholder {
  height: 200px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #F5F5F5 0%, #EAEAEA 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--orange);
  margin-top: 4px;
}
.map-placeholder p { font-size: 12px; color: var(--grey-text); text-align: center; max-width: 200px; line-height: 1.5; }

.business-hours { padding: 80px 0; background: var(--grey-bg); }
.hours-container { max-width: 720px; margin: 0 auto; }
.hours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hours-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-light);
}
.hours-day { font-size: 14px; font-weight: 600; color: var(--dark); }
.hours-time { font-size: 14px; color: var(--grey-text); }
.hours-item.closed .hours-time { color: #ef4444; font-weight: 600; }

/* ============================================================
   CHECKOUT PAGE
============================================================ */
.checkout-wrapper { padding: 80px 0 120px; margin-top: 74px; }
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.checkout-form-wrap h2 { font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.checkout-form-wrap > p { font-size: 15px; color: var(--grey-text); margin-bottom: 36px; }
.form-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px; margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-light);
}

.order-summary {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.order-summary h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.selected-plan {
  background: rgba(255,107,44,0.14);
  border: 1px solid rgba(255,107,44,0.4);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.selected-plan .plan-name { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.selected-plan .plan-title { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.selected-plan .plan-price { font-size: 34px; font-weight: 800; color: var(--orange); font-family: 'Syne', sans-serif; }
.selected-plan .plan-price small { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 400; font-family: 'DM Sans', sans-serif; }
.order-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.order-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); }
.order-feature svg { color: var(--orange); flex-shrink: 0; }
.order-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }
.order-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.order-total-label { font-size: 15px; color: rgba(255,255,255,0.65); }
.order-total-price { font-size: 30px; font-weight: 800; color: var(--orange); font-family: 'Syne', sans-serif; }
.payment-note { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 14px; font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.65; text-align: center; }

.order-confirmation {
  display: none;
  background: linear-gradient(135deg, var(--orange) 0%, #FF9055 100%);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  color: var(--white);
  margin-top: 32px;
}
.order-confirmation.show { display: block; }
.confirm-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.confirm-icon svg { color: var(--white); }
.order-confirmation h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.order-confirmation p { font-size: 15px; opacity: 0.85; line-height: 1.7; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .snapshot-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .details-card { padding: 32px 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
