/* ==========================================================================
   WebLaunch — plain CSS (no build step)
   Values verified 1:1 against the compiled Tailwind output of the live
   Horizons build (web-launch.gr) — not approximated.
   ========================================================================== */

/* ---------------- Fonts (self-hosted, no external CDN dependency) ---------------- */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/inter-greek-var.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-tight-italic-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-tight-italic-greek-var.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('fonts/inter-tight-bold-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('fonts/inter-tight-bold-greek-var.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

:root {
  --bg: #020617;
  --white: #ffffff;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --container-max: 1400px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', system-ui, sans-serif;
  --font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.025em; line-height: 1.25; }
p { margin: 0; line-height: 1.625; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1400px) {
  .container { max-width: var(--container-max); }
}
/* Sections that also carry an explicit px-6 in the source (Services/About/Contact/Footer) */
.container-px6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.accent { color: var(--blue-500); }
.accent-italic { color: var(--blue-500); font-style: italic; font-weight: 300; font-family: var(--font-display); }
.block { display: block; }

/* Icon sizes (SVGs carry no width/height attrs, sized purely via class) */
svg { display: block; }
.icon-12 { width: 12px; height: 12px; }
.icon-14 { width: 14px; height: 14px; }
.icon-16 { width: 16px; height: 16px; }
.icon-18 { width: 18px; height: 18px; }
.icon-20 { width: 20px; height: 20px; }
.icon-22 { width: 22px; height: 22px; }
.icon-24 { width: 24px; height: 24px; }
.icon-28 { width: 28px; height: 28px; }
.icon-open, .icon-close { width: 24px; height: 24px; }

/* ---------------- Header ---------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
  transition: background-color .3s ease, transform .3s ease, opacity .3s ease;
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.site-header.is-hidden {
  transform: translateY(-80px);
  opacity: 0;
}

/* max-w-5xl mx-auto px-6 (NOT the section .container — a narrower, fixed-width wrapper) */
.header-inner {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  cursor: pointer;
}

.nav-desktop { display: none; align-items: center; gap: 1.75rem; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }

.nav-link {
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--white);
  transition: color .2s ease;
}
.nav-link:hover { color: rgba(255,255,255,.8); }

.nav-social { display: flex; align-items: center; gap: 1rem; }

.icon-link { color: var(--white); transition: color .2s ease; display: inline-flex; }
.icon-link:hover { color: var(--blue-500); }

.btn-cta-small {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 9999px;
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 0 10px 15px -3px rgba(37,99,235,.2), 0 4px 6px -4px rgba(37,99,235,.2);
  transition: background-color .2s ease, transform .1s ease;
}
.btn-cta-small:hover { background: var(--blue-700); }
.btn-cta-small:active { transform: scale(.95); }

.nav-mobile-toggle { display: block; }
.menu-toggle { padding: .375rem; color: var(--white); position: relative; z-index: 110; }

/* Mobile fullscreen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(2,6,23,.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  transition: color .3s ease;
}
.mobile-link:hover { color: var(--blue-500); }

.btn-cta-mobile {
  width: 100%;
  max-width: 280px;
  padding: 1rem;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  margin-top: 1rem;
  transition: transform .2s ease;
}
.btn-cta-mobile:active { transform: scale(.95); }

.mobile-social { display: flex; align-items: center; gap: 2rem; padding-top: 1rem; }
.mobile-social .icon-link:active { transform: scale(.9); }

/* ---------------- Hero ---------------- */

.hero-wrap {
  background: var(--bg);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.hero {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0 1rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% -10%, #1e40af, transparent 70%);
  opacity: .2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: -4rem;
}

.hero-animate {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 0 .5rem;
  opacity: 0;
  transform: translateY(8px);
  animation: heroReveal .8s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge-row { display: flex; justify-content: center; margin-bottom: 1.5rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border-radius: 9999px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  color: var(--blue-400);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ping-dot { position: relative; display: flex; height: .5rem; width: .5rem; }
.ping-dot-ping {
  position: absolute; inset: 0; border-radius: 9999px;
  background: var(--blue-400); opacity: .75;
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.ping-dot-core { position: relative; display: inline-flex; border-radius: 9999px; height: .5rem; width: .5rem; background: var(--blue-500); }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.hero-title { display: flex; flex-direction: column; align-items: center; margin-bottom: 2.5rem; line-height: 1.1; padding: 0 .5rem; text-align: center; }

.hero-title-main {
  font-family: var(--font-display);
  font-size: 11vw;
  line-height: 1.1;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 7vw;
  line-height: 1.1;
  color: var(--blue-500);
  font-style: italic;
  font-weight: 300;
  margin-top: .5rem;
  letter-spacing: 0em;
}

.hero-cta-row { display: flex; justify-content: center; margin-top: 2rem; }

.btn-primary {
  padding: .875rem 2rem;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 1rem;
  font-weight: 700;
  font-size: .875rem;
  box-shadow: 0 20px 50px rgba(37,99,235,.2);
  transition: background-color .3s ease, transform .1s ease;
}
.btn-primary:hover { background: var(--blue-700); }
.btn-primary:active { transform: scale(.95); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.scroll-indicator-track {
  width: 1.25rem; height: 2rem;
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 9999px;
  display: flex; justify-content: center;
  padding: .25rem;
}

.scroll-indicator-dot {
  width: .25rem; height: .375rem;
  background: var(--blue-500);
  border-radius: 9999px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0; }
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem; left: 1.5rem;
  background: rgba(15,23,42,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--slate-800);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.cookie-consent.is-visible { opacity: 1; transform: translateY(0); }

.cookie-text { color: var(--slate-300); font-size: .8125rem; line-height: 1.6; margin-bottom: 1rem; }

.btn-cookie {
  width: 100%;
  background: var(--blue-600);
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  padding: .625rem;
  border-radius: .75rem;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
  transition: background-color .2s ease, transform .1s ease;
}
.btn-cookie:hover { background: var(--blue-700); }
.btn-cookie:active { transform: scale(.95); }

/* ---------------- Sections shared ---------------- */

.section { padding: 6rem 0; background: var(--bg); color: var(--white); position: relative; overflow: hidden; }

.h2 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; letter-spacing: -0.05em; line-height: 2.5rem; }
.h2.centered { text-align: center; }

.section-heading { margin-bottom: 5rem; }
.section-heading .h2 { margin-bottom: 1.25rem; }
.underline { height: 4px; width: 0; background: var(--blue-600); border-radius: 9999px; transition: width .8s cubic-bezier(.22,1,.36,1); }
.section-heading.in-view .underline { width: 80px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------------- Services ---------------- */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  border-radius: 2.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .5s ease, transform .3s ease;
  min-height: 320px;
}
.service-card:hover { border-color: rgba(59,130,246,.3); transform: translateY(-8px); }

.service-icon {
  width: 4rem; height: 4rem;
  background: rgba(37,99,235,.1);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  margin-bottom: 2rem;
  transition: background-color .5s ease, color .5s ease;
}
.service-card:hover .service-icon { background: var(--blue-600); color: var(--white); }

.service-title { font-size: 1.5rem; line-height: 2rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.025em; }
.service-desc { color: var(--slate-400); font-weight: 300; font-size: 1rem; line-height: 1.5rem; margin-bottom: 2rem; }

.service-features {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.feature-tag {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: var(--slate-500);
  transition: color .3s ease;
}
.service-card:hover .feature-tag { color: var(--slate-300); }
.feature-tag svg { color: var(--blue-500); flex-shrink: 0; }

.pricing-heading { margin-top: 8rem; margin-bottom: 4rem; }

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.pricing-card {
  display: flex; flex-direction: column;
  padding: 2.5rem;
  border-radius: 2.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .5s ease, transform .3s ease;
  min-height: 500px;
}
.pricing-card:hover { border-color: rgba(59,130,246,.3); transform: translateY(-8px); }

.plan-name { color: var(--blue-500); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-size: 1rem; }
.plan-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.5rem; color: var(--white); font-family: var(--font-display); font-size: 3rem; line-height: 1; font-weight: 700; letter-spacing: -0.05em; }
.plan-vat { font-size: 1rem; font-weight: 500; color: var(--slate-400); }
.plan-desc { color: var(--slate-400); line-height: 1.625; margin-bottom: 2.5rem; }

.plan-features { flex-grow: 1; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.plan-feature { display: flex; align-items: flex-start; gap: .75rem; }
.plan-feature svg { margin-top: .125rem; flex-shrink: 0; }
.plan-feature p { font-size: .875rem; line-height: 1.25rem; color: var(--slate-300); }
.plan-feature strong { color: var(--white); }
.accent-icon { color: var(--blue-500); }

.plan-note { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.05); font-size: .75rem; color: var(--slate-500); }

/* ---------------- About ---------------- */

.about-section { padding: 6rem 0; }
.about-glow {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%;
  transform: translate(-50%, -50%);
  background: rgba(37,99,235,.03);
  border-radius: 9999px;
  filter: blur(130px);
  pointer-events: none;
}
.about-container { position: relative; z-index: 10; }
.about-intro { max-width: 56rem; margin: 0 auto 4rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.about-intro .h2 { line-height: 1.1; }
.about-lead { color: var(--slate-400); max-width: 42rem; margin: 1.5rem auto 0; font-size: 1rem; line-height: 1.625; font-weight: 300; }

.benefits-grid {
  max-width: 48rem; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}

.benefit-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(4px);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.05);
  min-height: 80px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.2), 0 8px 10px -6px rgba(0,0,0,.2);
  transition: background-color .3s ease, border-color .3s ease, transform .2s ease;
}
.benefit-card:hover { background: rgba(255,255,255,.05); border-color: rgba(59,130,246,.5); transform: translateY(-5px) scale(1.02); }

.benefit-icon {
  background: rgba(37,99,235,.1);
  padding: .5rem;
  border-radius: .75rem;
  flex-shrink: 0;
  color: var(--blue-500);
  transition: background-color .3s ease, transform .3s ease;
}
.benefit-card:hover .benefit-icon { background: rgba(37,99,235,.2); transform: rotate(360deg) scale(1.2); }

.benefit-card span { font-size: .875rem; line-height: 1.25rem; color: var(--slate-200); font-weight: 500; letter-spacing: -0.025em; transition: color .3s ease; }
.benefit-card:hover span { color: var(--white); }

/* ---------------- Contact ---------------- */

.contact-section {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 2.5rem 0 0;
}
.contact-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at bottom, rgba(37,99,235,.1), transparent 60%);
}
.contact-top-fade {
  position: absolute; top: 0; left: 0; right: 0; height: 8rem; z-index: 10; pointer-events: none;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.contact-container { flex-grow: 1; display: flex; align-items: center; justify-content: center; position: relative; z-index: 10; }
.contact-inner { text-align: center; width: 100%; }
.contact-title { font-family: var(--font-display); margin-bottom: 2rem; font-size: 3rem; line-height: 1.25; letter-spacing: -0.05em; }

.btn-contact-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1.25rem 2.5rem;
  background: var(--blue-600); color: var(--white);
  border-radius: 1rem;
  font-size: 1.125rem; font-weight: 700;
  box-shadow: 0 20px 50px rgba(37,99,235,.2);
  margin-bottom: 3rem;
  transition: background-color .3s ease, transform .1s ease;
}
.btn-contact-cta:hover { background: var(--blue-700); }
.btn-contact-cta:hover svg { transform: translate(4px,-4px); }
.btn-contact-cta:active { transform: scale(.95); }
.btn-contact-cta svg { transition: transform .2s ease; }

.contact-social { display: flex; justify-content: center; gap: 2.5rem; color: var(--slate-400); }
.contact-social .icon-link:hover { color: var(--blue-400); }

.footer-bar { width: 100%; padding: 2rem 0 2rem; position: relative; z-index: 10; }
.footer-bar .container { display: flex; flex-direction: column; align-items: center; gap: .5rem; max-width: 56rem; }
.footer-tag { font-size: .5rem; text-transform: uppercase; letter-spacing: .3em; color: var(--blue-400); font-weight: 900; }
.footer-copy { width: 100%; text-align: center; font-size: .625rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 500; opacity: .5; }

/* ---------------- Landscape (short mobile screens) ---------------- */

@media (orientation: landscape) {
  .hero { padding-top: 6rem; padding-bottom: 6rem; }
  .badge-row { margin-bottom: 1rem; }
  .hero-content { margin-top: 5rem; }
  .hero-cta-row { margin-top: 1.5rem; }
}

/* ---------------- Responsive ---------------- */

@media (min-width: 640px) {
  .hero-title-main { font-size: 3.75rem; line-height: 1; }
  .hero-title-sub { font-size: 2.25rem; line-height: 1; }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-mobile-toggle { display: none; }
  .mobile-menu { display: none; }

  .logo { font-size: 1.5rem; }
  .hero-content { margin-top: 0; }
  .hero-title-main { font-size: 4.5rem; line-height: 1; }
  .hero-title-sub { font-size: 3rem; line-height: 1; margin-top: 1rem; }

  .h2 { font-size: 3.75rem; line-height: 1; }
  .about-intro .h2 { line-height: 1; }

  .service-card, .pricing-card { padding: 3.5rem; }
  .service-title { font-size: 1.875rem; line-height: 2.25rem; }
  .service-desc { font-size: 1.125rem; line-height: 1.75rem; }
  .about-lead { font-size: 1.125rem; }
  .benefit-card span { font-size: 1rem; line-height: 1.5rem; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }

  .section-heading { margin-bottom: 7rem; }
  .pricing-heading { margin-top: 12rem; margin-bottom: 4rem; }
  .about-intro { margin-bottom: 6rem; }
  .contact-title { font-size: 4.5rem; line-height: 1; margin-bottom: 3rem; }
  .footer-tag { font-size: .5625rem; }
}

@media (min-width: 1024px) {
  .hero-title-main { font-size: 4.5rem; }
}
