/* ============================================================
   NORTHLINE STUDIO  |  Landing Page Styles
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #1f6b45;   /* forest green */
  --accent-dark:  #154d31;
  --accent-light: #d9f0e3;
  --sky:          #bfe3f7;
  --sky-light:    #eaf6ff;
  --dark:         #0f172a;
  --dark-2:       #1e293b;
  --mid:          #475569;
  --light:        #94a3b8;
  --bg:           #f8fafc;
  --white:        #ffffff;
  --card-bg:      #ffffff;
  --border:       #e2e8f0;
  --success:      #16a34a;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.12);
  --font:         'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition:   0.2s ease;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.desktop-br { display: none; }
@media (min-width: 768px) { .desktop-br { display: inline; } }


/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-sm  { font-size: .875rem; padding: 8px 18px; }
.btn-lg  { font-size: 1.0625rem; padding: 16px 32px; }

/* Primary */
.btn:not(.btn-outline):not(.btn-submit) {
  background: var(--accent);
  color: var(--white);
}
.btn:not(.btn-outline):not(.btn-submit):hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31,107,69,.45);
}
.btn:not(.btn-outline):not(.btn-submit):active {
  transform: scale(0.97) translateY(0);
  box-shadow: none;
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline:active {
  transform: scale(0.97) translateY(0);
}

/* Submit */
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.0625rem;
  padding: 16px 32px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31,107,69,.45);
}
.btn-submit:active:not(:disabled) {
  transform: scale(0.97) translateY(0);
  box-shadow: none;
}
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: inline; }


/* ---- Section Shared ---- */
.section { padding: 96px 0; }
.section-eyebrow {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--mid);
  max-width: 580px;
}


/* ============================================================
   NAV BAR
   ============================================================ */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
}
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo-img { height: 32px; width: auto; display: block; }

.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
@media (min-width: 720px) {
  .nav-links { display: flex; }
}


/* ============================================================
   HERO — "Above the clouds"
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-light) 55%, var(--white) 100%);
}

.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 15%, rgba(255,255,255,.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 15% 75%, rgba(255,255,255,.4) 0%, transparent 65%);
  pointer-events: none;
}

/* ---- Mountain ridgeline (line-art, layered behind clouds) ---- */
.hero-ridges {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 34%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
}
.ridge {
  fill: none;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}
.ridge-back  { stroke: var(--accent); opacity: .18; }
.ridge-mid   { stroke: var(--accent); opacity: .32; }
.ridge-front { stroke: var(--accent-dark); opacity: .5; }

/* ---- Drifting cloud layer ---- */
.cloud-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cloud {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0;
  will-change: transform, opacity;
  animation-name: drift;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Layered blobs to fake a soft cloud silhouette via box-shadow */
.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  filter: blur(18px);
}

.cloud-1 {
  width: 260px; height: 90px;
  top: 12%;
  box-shadow: 90px 20px 0 -10px #fff, -70px 25px 0 -20px #fff;
  animation-duration: 46s;
  animation-delay: 0s;
}
.cloud-2 {
  width: 200px; height: 70px;
  top: 28%;
  box-shadow: 70px 15px 0 -15px #fff, -50px 18px 0 -18px #fff;
  animation-duration: 58s;
  animation-delay: -12s;
  opacity: 0;
}
.cloud-3 {
  width: 320px; height: 110px;
  top: 8%;
  box-shadow: 110px 25px 0 -12px #fff, -90px 30px 0 -22px #fff;
  animation-duration: 64s;
  animation-delay: -30s;
}
.cloud-4 {
  width: 180px; height: 60px;
  top: 42%;
  box-shadow: 60px 12px 0 -14px #fff, -45px 14px 0 -16px #fff;
  animation-duration: 40s;
  animation-delay: -6s;
}
.cloud-5 {
  width: 240px; height: 80px;
  top: 20%;
  box-shadow: 80px 18px 0 -12px #fff, -60px 20px 0 -18px #fff;
  animation-duration: 52s;
  animation-delay: -22s;
}

@keyframes drift {
  0%   { transform: translateX(-30vw); opacity: 0; }
  10%  { opacity: .85; }
  50%  { transform: translateX(50vw); opacity: .7; }
  90%  { opacity: 0; }
  100% { transform: translateX(130vw); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cloud { animation: none; opacity: .6; transform: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.hero-logo {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 70%);
  height: auto;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.hero-logo.visible { opacity: .9; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--mid);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-cta {
  box-shadow: 0 0 0 1px rgba(31,107,69,.4), 0 8px 32px rgba(31,107,69,.3);
}
/* Specificity (0,4,0) — matches the general hover rule so source order wins */
.btn.hero-cta:not(.btn-outline):hover {
  box-shadow: 0 0 0 1px rgba(31,107,69,.55), 0 12px 40px rgba(31,107,69,.45);
}
/* Must come after hover so it wins when both :hover and :active apply */
.btn.hero-cta:not(.btn-outline):active {
  box-shadow: none;
  transform: scale(0.97) translateY(0);
}

.hero-cta-secondary {
  background: rgba(255,255,255,.7);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(15,23,42,.2);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(15,23,42,.4);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}


/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.pricing { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
}
@media (min-width: 720px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-tag {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-price span {
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--mid);
}
.pricing-desc {
  font-size: .9375rem;
  color: var(--mid);
  margin-bottom: 20px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: .9375rem;
  color: var(--mid);
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-cta { width: 100%; }

.addons {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.addons-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
  text-align: center;
}
.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .addons-grid { grid-template-columns: repeat(3, 1fr); }
}
.addon {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 24px;
}
.addon-price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: .9375rem;
  margin-bottom: 6px;
}
.addon h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.addon p {
  font-size: .9375rem;
  color: var(--mid);
}
.addons-referral {
  margin-top: 32px;
  text-align: center;
  font-size: .9375rem;
  color: var(--mid);
}


/* ============================================================
   SHOWCASE / PORTFOLIO
   ============================================================ */
.showcase { background: var(--bg); }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
}
@media (min-width: 560px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark-2);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.03); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15,23,42,.75);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.card-body {
  padding: 24px;
}
.card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.card-body p {
  font-size: .9375rem;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-features li {
  font-size: .875rem;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
}
.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.showcase-cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.showcase-cta p {
  font-size: 1.0625rem;
  color: var(--mid);
}


/* ============================================================
   BOT SERVICES
   ============================================================ */
.bots { background: #f2f9f5; }

.bot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
}
@media (min-width: 800px) {
  .bot-grid { grid-template-columns: repeat(3, 1fr); }
}

.bot-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bot-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.bot-tier-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.bot-tier-label {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
}

.bot-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.bot-features li {
  font-size: 1rem;
  color: var(--mid);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.bot-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.bot-features li.bot-inherited {
  color: var(--light);
  font-style: italic;
}
.bot-features li.bot-inherited::before {
  content: '↳';
  color: var(--light);
  font-weight: 400;
}

.bot-dashboard-figure {
  margin-top: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.bot-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
}
.bot-dashboard-figure figcaption {
  font-size: .875rem;
  font-style: italic;
  color: var(--light);
  text-align: center;
  padding: 10px 12px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.bots-cta {
  margin-top: 56px;
  text-align: center;
}
.bots-cta .btn {
  max-width: 600px;
  white-space: normal;
  line-height: 1.4;
  padding: 18px 36px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-inner { max-width: 720px; }
.about-text {
  font-size: 1.0625rem;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.75;
}
.about-text:last-child { margin-bottom: 0; }


/* ============================================================
   LEAD FORM / CONTACT
   ============================================================ */
.form-section { background: var(--bg); }

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .form-wrapper {
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
  }
}

.form-intro .section-sub {
  margin-bottom: 32px;
}

.form-promises {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.form-promises li {
  font-size: .9375rem;
  color: var(--mid);
  font-weight: 500;
}
.form-promises li::first-letter { color: var(--success); }

.contact-direct p {
  font-size: 1.125rem;
  color: var(--mid);
  margin-bottom: 10px;
}
.contact-direct a {
  color: var(--accent);
  font-weight: 600;
}
.contact-direct a:hover { text-decoration: underline; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 480px) {
  .form-card { padding: 28px 20px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group.full-width { grid-column: 1 / -1; }

label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark-2);
}
.required { color: var(--accent); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: #94a3b8; }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,107,69,.14);
  background: var(--white);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 110px; }

/* Field-level and form-level error states (from @formspree/ajax) */
.field-error[data-fs-error][data-fs-active],
[data-fs-error][data-fs-active]:not([data-fs-error=""]) {
  display: block;
  font-size: .8125rem;
  color: #ef4444;
  margin-top: 5px;
  font-weight: 500;
}
.field-error[data-fs-error]:not([data-fs-active]) {
  display: none;
}

/* Highlight invalid fields flagged by @formspree/ajax */
input[data-fs-field][aria-invalid="true"],
select[data-fs-field][aria-invalid="true"],
textarea[data-fs-field][aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}

/* Form-level error banner */
.form-error-banner[data-fs-error][data-fs-active] {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: .875rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.form-error-banner[data-fs-error]:not([data-fs-active]) {
  display: none;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  color: var(--success);
  font-size: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.6;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0c2015;
  padding: 48px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: .9375rem;
  color: #7fa08d;
}
.footer-copy {
  font-size: .8125rem;
  color: #547a63;
  margin-top: 8px;
}
.calendly-embed-placeholder:empty { display: none; }
.calendly-embed-placeholder {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .hero-content { padding: 60px 24px; }
  .form-card { padding: 28px 20px; }
  .pricing-card { padding: 28px 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
