/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
<style>
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== DESIGN TOKENS (Clownfish Brand) ===== */
:root {
  --orange: #E74021;
  --orange-dark: #e85520;
  --orange-light: #fff3ee;
  --navy: #254467;
  --navy-light: #2d2d44;
  --grey-light: #f4f5f7;
  --grey-mid: #e8e8e8;
  --grey-text: #555;
  --green: #16a34a;
  --white: #ffffff;
  --max-width: 1080px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== TOP BAR (trust strip — no nav) ===== */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.2px;
}
.trust-bar .trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-bar span { display: flex; align-items: center; gap: 6px; opacity: 0.9; }
.trust-bar strong { color: #f7c59f; }

/* ===== HEADER ===== */
/* ── HEADER — floating pill (matches Clownfish live site) ─── */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:200;
  padding:14px 20px;
  pointer-events:none;
}
.site-header__pill{
  pointer-events:all;
  width:70% !important;
  max-width:var(--mw);
  margin:0 auto;
  background:rgba(34,34,34,0.333);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-radius:38.4px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1px solid rgba(255,255,255,0.09);
  box-shadow:0 4px 28px rgba(0,0,0,0.22);
}
.site-header__logo{display:flex;align-items:center;flex-shrink:0}
.site-header__logo img{height:36px;width:auto}
.site-header__right{display:flex;align-items:center;gap:12px;flex-shrink:0}

/* Phone */
.header-phone{
  display:flex;align-items:center;gap:9px;
  color:rgba(255,255,255,0.9);font-weight:600;font-size:.95rem;white-space:nowrap;
  transition:color .2s;
  text-decoration:none;
}
.header-phone:hover{color:#fff}
.header-phone__icon{
  width:30px;height:30px;background:var(--orange);color:#fff;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:.82rem;flex-shrink:0;transition:background .2s;
}
.header-phone:hover .header-phone__icon{background:var(--orange-dark)}

/* CTA — orange pill matching Clownfish "Get in touch" button */
.header-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--orange);color:#fff;
  font-weight:600;font-size:1rem;padding:10px 18px;
  border-radius:32px;white-space:nowrap;
  transition:background .18s,transform .12s;
}
.header-cta:hover{background:var(--orange-dark);transform:translateY(-1px)}
.header-cta:active{transform:translateY(0)}

/* ============================================================
   HERO — Full fix for HubSpot class names
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(231,64,33,0.45) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 40px 80px;
}

/* ── 2-column grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

/* ── Left: copy ── */
.hero-left {
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(231,64,33,0.15);
  border: 1px solid rgba(231,64,33,0.5);
  color: #ff6b4a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 20px;
}
.hero__h1{
  font-size:clamp(2rem,4.5vw,3rem);font-weight:900;color:var(--white);
  line-height:1.1;letter-spacing:-1px;margin-bottom:20px;
}
.hero-left em{font-style:italic;color:var(--orange)}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
}

.badge--stars {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
}

.badge--guarantee {
  background: rgba(231,64,32,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  color: white;
}

/* ── Right: form card ── */
.hero-right {
  min-width: 0; /* prevent grid blowout */
}

.form-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
/* ============================================================
   FIX 1: Hero height — remove forced full-viewport height
   ============================================================ */

.hero {
  min-height: unset;           /* removes the 100vh forcing it tall */
  padding-top: 100px;          /* space for the fixed nav */
  padding-bottom: 70px;
}

/* Tighten container padding too */
.hero .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.guarantee__link{
  display:inline-flex;align-items:center;gap:8px;margin-top:20px;
  background:var(--navy);color:var(--white);font-weight:700;font-size:.9rem;
  padding:12px 22px;border-radius:var(--r-sm);transition:background .18s;
}
.guarantee__link:hover{background:var(--orange)}


/* ===== CLIENT LOGOS ===== */
.clients-section {
  padding: 36px 0;
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
}
.clients-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 18px;
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.client-logo {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s;
}
.client-logo:hover { opacity: 0.8; }

/* ===== WHY US SECTION ===== */
.why-us {
  padding: 64px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-header p {
  color: var(--grey-text);
  font-size: 1rem;
  margin-top: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 64px 0;
  background: var(--navy);
}
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.65); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: rgba(255,107,53,0.3);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid rgba(255,255,255,0.15);
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 64px 0;
  background: var(--grey-light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.author-title { font-size: 0.78rem; color: var(--grey-text); }

/* ===== GUARANTEE SECTION ===== */
.guarantee {
  padding: 56px 0;
  background: var(--white);
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.guarantee-badge-large {
  background: linear-gradient(135deg, #254467, #254467);
  color: white;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.guarantee-badge-large .badge-icon { font-size: 3rem; margin-bottom: 12px; display: block; }
.guarantee-badge-large h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.guarantee-badge-large p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; }
.guarantee-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.guarantee-content p {
  font-size: 0.93rem;
  color: var(--grey-text);
  margin-bottom: 20px;
  line-height: 1.7;
}
.guarantee-points { list-style: none; }
.guarantee-points li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 10px;
  align-items: flex-start;
}
.guarantee-points li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--orange), #e85520);
  text-align: center;
}
.bottom-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.bottom-cta p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: white;
  color: var(--orange);
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 32px 0;
  font-size: 0.83rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 32px; opacity: 0.7; filter: brightness(10); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .form-card { order: -1; }
  .why-grid,
  .steps-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; }
  
}
/* ============================================================
   FIX 2: Mobile nav — using actual class names from your HTML
   ============================================================ */

/* Fix: site-header__right has flex-shrink:0 which causes overflow */
@media (max-width: 600px) {
  .site-header__pill {
    padding: 6px 6px 6px 14px;
    gap: 0;
  }

  .site-header__right {
    flex-shrink: 1;  /* allow it to shrink — this is the root cause */
    gap: 6px;
  }

  /* Hide the phone number text on mobile — too cramped */
  .header-phone {
    display: none;
  }

  /* Shrink the CTA button slightly */
  .header-cta {
    font-size: 12px !important;
    padding: 8px 14px !important;
    white-space: nowrap;
  }

  .site-header__logo img {
    height: 28px;
    width: 100px;
  }
  .site-header {
      padding: 14px 0px;
  }
}

@media (max-width: 400px) {
  .header-cta {
    font-size: 11px !important;
    padding: 7px 10px !important;
  }
}
@media (max-width: 600px) {
  .why-grid,
  .steps-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar .trust-bar-inner { gap: 12px; }
  .steps-grid::before { display: none; }
  .hero { padding: 40px 0 36px; }
}
</style>