/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #00E87A;
  --green-dark: #00c068;
  --gold: #D4960A;
  --gold-light: #F5B82E;
  --black: #1a1728;
  --dark: #221f32;
  --dark-card: #2a263d;
  --dark-border: #38334e;
  --white: #ffffff;
  --grey: #888888;
  --light-grey: #f5f5f5;
  --light-section: #f6f4fb;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-tag-gold {
  color: var(--gold);
}

.cornwall-gold {
  color: var(--gold-light);
}

.cornish-gold-text {
  color: var(--gold-light);
  font-weight: 700;
}

.service-sub-gold {
  color: var(--gold-light) !important;
}

.hero-trust-cornwall {
  color: var(--gold-light);
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }

/* Light section headings */
.fomo-stats h2,
.who-we-help h2,
.pricing h2 {
  color: var(--black);
}

.fomo-stats .section-header p,
.who-we-help .section-header p {
  color: #555;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--black);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 232, 122, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--black);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.3s;
  overflow: hidden;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
}

.nav-logo img {
  height: 120px;
  width: auto;
  transform: scale(2.2);
  transform-origin: left center;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0,0,0,0.6);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--black);
}

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

.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(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  border-bottom: 1px solid #eeeeee;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  padding-top: 10rem;
  padding-bottom: 7rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,232,122,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,232,122,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
}

.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,232,122,0.1);
  border: 1px solid rgba(0,232,122,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.75rem;
}

.hero-availability::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--grey);
}

.hero-trust-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* ===== FOMO STATS ===== */
.fomo-stats {
  background: var(--light-section);
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 5rem 0;
}

.fomo-stats .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.fomo-stats .section-header p {
  color: #555;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.stat-card:hover {
  border-color: rgba(0,232,122,0.5);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
}

/* ===== WHAT WE DO ===== */
.what-we-do {
  background: var(--black);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered { text-align: center; }

.section-header p {
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header.centered p { margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2.25rem;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(0,232,122,0.3);
  transform: translateY(-4px);
}

.service-card.featured {
  border-color: rgba(0,232,122,0.4);
  background: linear-gradient(135deg, rgba(0,232,122,0.05) 0%, var(--dark-card) 60%);
}

.service-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--green);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.service-card .service-sub {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.service-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.service-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ===== HOW IT WORKS STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold-light));
  opacity: 0.3;
  pointer-events: none;
}

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2.25rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
}

.step-card:hover {
  border-color: rgba(0,232,122,0.3);
  transform: translateY(-4px);
}

.step-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.steps-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.steps-cta span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before { display: none; }
}

/* ===== WHO WE HELP ===== */
.who-we-help {
  background: var(--white);
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.client-card {
  background: var(--light-section);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
  cursor: default;
}

.client-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.client-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.client-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
}

.who-tagline {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

/* ===== EXAMPLES ===== */
.examples {
  background: var(--black);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.example-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}

.example-card:hover {
  border-color: rgba(0,232,122,0.3);
  transform: translateY(-4px);
}

.example-thumb {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1e2a22 0%, #1a2420 50%, #1e2a22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.example-thumb-1 {
  background: linear-gradient(135deg, #0d2118 0%, #162d20 50%, #0d2118 100%);
}

.example-thumb-2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #252540 50%, #1a1a2e 100%);
}

.example-thumb-3 {
  background: linear-gradient(135deg, #2a1a0d 0%, #3d2510 50%, #2a1a0d 100%);
}

.example-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.example-placeholder-icon {
  font-size: 2.5rem;
}

.example-placeholder-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.example-info {
  padding: 1.5rem;
}

.example-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.example-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.example-info p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
}

.examples-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey);
  font-style: italic;
}

/* ===== URGENCY BAND ===== */
.urgency-band {
  background: var(--green);
  padding: 4.5rem 0;
  text-align: center;
}

.urgency-band h2 {
  color: var(--black);
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.urgency-band p {
  color: rgba(0,0,0,0.65);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ===== PRICING ===== */
.pricing {
  background: var(--light-section);
  border-top: 1px solid #e8e8e8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 2.25rem;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(0,232,122,0.5);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--green);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.pricing-card .pricing-sub {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.pricing-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 0.25rem;
}

.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--grey);
}

.pricing-price.green-price {
  color: var(--green);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-features li.note-item::before {
  content: 'ℹ';
  color: rgba(255,255,255,0.4);
}

/* ===== PRICING HERO LAYOUT ===== */
.pricing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

.pricing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.pricing-headline-price {
  color: var(--green);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
}

.pricing-headline-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Comparison row */
.pricing-compare {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.compare-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
}

.compare-them {
  background: #f0eef5;
  border: 1px solid #ddd;
}

.compare-us {
  background: var(--black);
  border: 2px solid var(--green);
}

.compare-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-them .compare-label { color: #999; }
.compare-us .compare-label { color: rgba(255,255,255,0.6); }

.compare-price {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.compare-them .compare-price {
  color: #aaa;
  text-decoration: line-through;
}

.compare-us .compare-price { color: var(--green); }

.compare-arrow {
  font-size: 1.5rem;
  color: #ccc;
  font-weight: 300;
}

/* Featured card */
.pricing-card-featured {
  background: var(--black);
  border: 2px solid rgba(0,232,122,0.3);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,232,122,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-featured-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--dark-border);
}

.pricing-card-featured-header h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.pricing-card-featured-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.pricing-big-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.pricing-big-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--dark-border);
}

.pricing-card-featured .pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-features li {
  color: rgba(255,255,255,0.8);
}

.pricing-card-featured .pricing-hosting-note {
  background: rgba(0,232,122,0.07);
  border-color: rgba(0,232,122,0.2);
  margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-hosting-note strong {
  color: var(--green);
}

.pricing-card-featured .pricing-hosting-note p {
  color: rgba(255,255,255,0.5);
}

@media (max-width: 860px) {
  .pricing-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Solo pricing layout */
.pricing-centered {
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.pricing-card-solo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.pricing-card-solo .pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-hosting-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(0,232,122,0.07);
  border: 1px solid rgba(0,232,122,0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.hosting-note-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-hosting-note strong {
  display: block;
  font-size: 0.92rem;
  color: var(--green);
  margin-bottom: 0.2rem;
}

.pricing-hosting-note p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

.pricing-more {
  margin-bottom: 0;
}

.pricing-more-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px dashed #ccc;
  border-radius: 12px;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.pricing-more-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.pricing-more-inner > div {
  flex: 1;
  min-width: 180px;
}

.pricing-more-inner strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.pricing-more-inner p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

.pricing-more-inner .btn {
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-note strong {
  color: var(--black);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-info p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.promise-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.promise-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.promise-item strong {
  color: var(--white);
}

.promise-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
  margin: 0;
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.8);
}

.form-group label .optional {
  font-weight: 400;
  color: var(--grey);
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

/* Form success banner */
.form-success-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(0, 232, 122, 0.1);
  border: 1px solid rgba(0, 232, 122, 0.35);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  animation: fadeSlideIn 0.4s ease;
}

.form-success-banner .form-success-icon {
  width: 2rem;
  height: 2rem;
  background: var(--green);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success-banner strong {
  display: block;
  color: var(--green);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.form-success-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-border);
}

.footer-brand img {
  height: 38px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 280px;
}

.footer-brand .footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-cornwall {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  section { padding: 4rem 0; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-trust-dot { display: none; }

  .clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
