/* ==========================================================================
   Oceancoast Solutions - Pure Light Theme with High Contrast & Center Alignment
   Domain: oceancoastsolutions.com
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Clean Light Palette */
  --bg-main: #FAFAFA;
  --bg-surface: rgba(255, 255, 255, 0.95);
  --bg-card-frosted: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #FFFFFF;

  /* Accents */
  --orange-accent: #FF6B00;
  --orange-hover: #E05D00;
  --orange-soft: rgba(255, 107, 0, 0.08);
  --orange-glow: rgba(255, 107, 0, 0.25);

  /* Grays & Neutrals - ULTRA HIGH CONTRAST */
  --text-primary: #09090B;
  --text-secondary: #18181B;
  --text-muted: #3F3F46;
  --text-light-muted: #52525B;
  --border-light: rgba(9, 9, 11, 0.12);
  --border-highlight: rgba(255, 107, 0, 0.4);

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.09);
  --shadow-orange: 0 8px 25px rgba(255, 107, 0, 0.3);

  --blur-frosted: blur(20px) saturate(180%);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
}

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

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

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
}

/* --- FIXED FULL-WEBSITE B/W WAVE CANVAS BACKGROUND --- */
.global-wave-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

#waveCanvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.35;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.orange-text {
  color: var(--orange-accent) !important;
}

.section-tag {
  color: var(--orange-accent);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Layout Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* --- Navbar (Frosted Light Header) --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--bg-surface);
  backdrop-filter: var(--blur-frosted);
  -webkit-backdrop-filter: var(--blur-frosted);
  border-bottom: 1px solid var(--border-light);
  height: 72px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge-frosted {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--orange-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-orange);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-orange {
  background: var(--orange-accent);
  color: #FFFFFF;
  border: 1px solid var(--orange-accent);
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

.btn-frosted-glass {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
}

.btn-frosted-glass:hover {
  background: #FFFFFF;
  border-color: var(--orange-accent);
  color: var(--orange-accent);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  padding: 200px 0 140px;
  text-align: center;
  position: relative;
}

.hero-badge-frosted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  background: var(--orange-soft);
  border: 1px solid var(--border-highlight);
  backdrop-filter: var(--blur-frosted);
  color: var(--orange-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  max-width: 980px;
  margin: 0 auto 1.5rem;
  line-height: 1.08;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- Section Formatting --- */
.section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- Category Pillars Tabs --- */
.pillar-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card-frosted);
  border: 1px solid var(--border-light);
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: var(--blur-frosted);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  background: #FFFFFF;
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--orange-accent);
  color: #FFFFFF;
  border-color: var(--orange-accent);
  box-shadow: var(--shadow-orange);
}

/* --- Service Cards Grid (Center-aligned layout support) --- */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card-frosted {
  background: var(--bg-card-frosted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: var(--blur-frosted);
  -webkit-backdrop-filter: var(--blur-frosted);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 1.35rem); /* 3 cards per row default */
  min-width: 340px;
}

.service-card-frosted:hover {
  transform: translateY(-8px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.service-icon-frosted {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--orange-soft);
  border: 1px solid var(--border-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-accent);
  font-size: 1.5rem;
}

.badge-tag-frosted {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--orange-soft);
  border: 1px solid var(--border-highlight);
  color: var(--orange-accent);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.service-features li i {
  color: var(--orange-accent);
  font-size: 0.85rem;
}

/* --- DEDICATED PRICING CARDS SYSTEM (2 CARDS IN PORTRAIT ROW GRID) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.pricing-card-frosted {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pricing-card-frosted:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.pricing-card-frosted.popular {
  border: 2px solid var(--orange-accent);
  box-shadow: var(--shadow-card), var(--shadow-orange);
  background: #FFFFFF;
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  right: 2rem;
  background: var(--orange-accent);
  color: #FFFFFF;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-orange);
}

.pricing-tier-name {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
}

.pricing-tier-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* High Contrast Price Box */
.pricing-price-box {
  background: rgba(250, 250, 250, 0.95);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}

.pricing-main-fee {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-currency {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange-accent);
}

.pricing-amount {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 700;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.9rem;
  line-height: 1.45;
}

.pricing-features-list li i {
  color: var(--orange-accent);
  font-size: 1rem;
  margin-top: 3px;
}

/* --- HIGH CONTRAST PRICING MATRIX TABLE --- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-top: 3rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.pricing-table th {
  background: #FAFAFA;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: rgba(255, 107, 0, 0.02);
}

.platform-name-cell {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- PREVIOUS PROJECTS LANDSCAPE CARDS SECTION --- */
.projects-landscape-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.project-card-landscape {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--blur-frosted);
  -webkit-backdrop-filter: var(--blur-frosted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
  transition: var(--transition-smooth);
}

.project-card-landscape:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  background: #FFFFFF;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.project-landscape-preview {
  background: var(--orange-soft);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.project-icon-huge {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--orange-accent);
  box-shadow: var(--shadow-orange);
  margin-bottom: 1.5rem;
}

.project-badge-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-tag {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #FFFFFF;
  color: var(--orange-accent);
  border: 1px solid var(--border-highlight);
}

.project-landscape-info {
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.project-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.project-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: #FAFAFA;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
  text-align: center;
}

.project-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--orange-accent);
}

.project-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

/* --- LEADERSHIP & FOUNDERS SECTION --- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.founder-card-circle-style {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--blur-frosted);
  -webkit-backdrop-filter: var(--blur-frosted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.founder-card-circle-style:hover {
  transform: translateY(-8px);
  border-color: var(--border-highlight);
  background: #FFFFFF;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.founder-circle-avatar-container {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  position: relative;
  padding: 5px;
  background: linear-gradient(135deg, var(--orange-accent), #FFB703);
  box-shadow: var(--shadow-orange);
}

.founder-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF;
  display: block;
}

.founder-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.founder-role-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  background: var(--orange-soft);
  border: 1px solid var(--border-highlight);
  color: var(--orange-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.founder-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.founder-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.founder-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FAFAFA;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.founder-socials a:hover {
  background: var(--orange-accent);
  color: #FFFFFF;
  border-color: var(--orange-accent);
  box-shadow: var(--shadow-orange);
}

/* --- Guarantee Banner --- */
.guarantee-banner-frosted {
  background: var(--bg-card-frosted);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin-top: 4.5rem;
  backdrop-filter: var(--blur-frosted);
  -webkit-backdrop-filter: var(--blur-frosted);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.guarantee-content h3 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.guarantee-content p {
  color: var(--text-muted);
  max-width: 750px;
  font-size: 1rem;
}

.guarantee-badge-frosted {
  background: var(--orange-accent);
  color: #FFFFFF;
  padding: 1.75rem 2.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.guarantee-badge-frosted .score {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
}

.guarantee-badge-frosted .label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* --- Process Section --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.process-card-frosted {
  background: var(--bg-card-frosted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  backdrop-filter: var(--blur-frosted);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.process-step {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: rgba(9, 9, 11, 0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.process-card-frosted h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--orange-accent);
}

.process-card-frosted p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Inquiry Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 9, 11, 0.5);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container-frosted {
  background: #FFFFFF;
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 680px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: var(--transition-smooth);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container-frosted {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--orange-accent);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control-frosted {
  width: 100%;
  background: #FAFAFA;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control-frosted:focus {
  outline: none;
  border-color: var(--orange-accent);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

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

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 80px;
  right: 2rem;
  background: #FFFFFF;
  border: 1px solid var(--orange-accent);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- THIN FIXED FOOTER --- */
.footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-surface);
  backdrop-filter: var(--blur-frosted);
  -webkit-backdrop-filter: var(--blur-frosted);
  border-top: 1px solid var(--border-light);
  z-index: 99;
  display: flex;
  align-items: center;
}

.footer-fixed-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-logo-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--orange-accent);
  color: #FFFFFF;
  font-size: 0.8rem;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.footer-links-inline a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.footer-links-inline a:hover {
  color: var(--orange-accent);
}

/* --- Responsive Mobile Queries --- */
@media (max-width: 992px) {
  .service-card-frosted {
    width: 100%;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .project-card-landscape {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-banner-frosted {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 150px 0 100px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    backdrop-filter: var(--blur-frosted);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    gap: 1.25rem;
  }

  .mobile-toggle {
    display: block;
  }

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

  .footer-fixed {
    height: 54px;
  }

  .footer-fixed-container {
    justify-content: center;
  }

  .footer-left span.copyright-text {
    display: none;
  }

  .footer-links-inline {
    gap: 1rem;
  }

  .footer-links-inline a {
    font-size: 0.75rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }
}
