/* A1 FL Storage - Shared Stylesheet */

:root {
  --navy-darkest: #0a1628;
  --navy-dark: #0f2745;
  --navy-mid: #1a3a5c;
  --ice-blue: #7ec8e3;
  --ice-blue-bright: #a8d8ea;
  --orange: #ff6b1a;
  --orange-hover: #ff8540;
  --text-light: #e8eef5;
  --text-muted: #a8b8c8;
  --white: #ffffff;
  --border: rgba(126, 200, 227, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--navy-darkest);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
header {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--ice-blue) 0%, var(--ice-blue-bright) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-darkest);
  font-weight: 900;
  font-size: 16px;
}

nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}

nav a:hover {
  color: var(--ice-blue);
  background: rgba(126, 200, 227, 0.08);
}

nav a.active {
  color: var(--ice-blue);
}

.header-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange-hover);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darkest) 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(126, 200, 227, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  color: var(--ice-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(126, 200, 227, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(126, 200, 227, 0.2);
}

h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--white);
  max-width: 900px;
}

h1 .highlight {
  color: var(--ice-blue);
}

.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ice-blue);
  border: 1px solid var(--ice-blue);
}

.btn-secondary:hover {
  background: rgba(126, 200, 227, 0.08);
}

/* ===== SECTIONS ===== */
section {
  padding: 70px 0;
}

section.alt {
  background: var(--navy-dark);
}

h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h2 .highlight {
  color: var(--ice-blue);
}

h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.section-intro {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 40px;
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
}

p.muted {
  color: var(--text-muted);
}

/* ===== CARD GRID ===== */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--navy-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: all 0.2s;
}

section.alt .card {
  background: var(--navy-mid);
}

.card:hover {
  border-color: rgba(126, 200, 227, 0.4);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(126, 200, 227, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.card a.card-link {
  color: var(--ice-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  display: inline-block;
}

.card a.card-link:hover {
  color: var(--ice-blue-bright);
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  background: var(--navy-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row.header-row {
  background: var(--navy-mid);
  font-weight: 700;
  color: var(--ice-blue);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-row .item {
  font-weight: 600;
  color: var(--white);
}

.pricing-row .price {
  color: var(--ice-blue);
  font-weight: 700;
  font-size: 17px;
}

/* ===== LIST ===== */
ul.feature-list {
  list-style: none;
  padding: 0;
}

ul.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

ul.feature-list li:last-child {
  border-bottom: none;
}

ul.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: rgba(126, 200, 227, 0.15);
  color: var(--ice-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

ul.inline-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

ul.inline-list li {
  background: rgba(126, 200, 227, 0.08);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--ice-blue);
  font-size: 14px;
  font-weight: 500;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--navy-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 12px;
}

section.alt .faq-item {
  background: var(--navy-mid);
}

.faq-item h4 {
  color: var(--ice-blue);
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 15px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  margin: 40px 0;
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(255, 107, 26, 0.08);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p {
  margin-bottom: 0;
  font-size: 15px;
}

.info-box strong {
  color: var(--orange);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-darkest);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--ice-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--ice-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--ice-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  .hero { padding: 50px 0 40px; }
  section { padding: 50px 0; }
  .header-inner { flex-wrap: wrap; }
  nav { order: 3; width: 100%; justify-content: center; padding-top: 12px; border-top: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 32px; }
  .pricing-row { grid-template-columns: 1.4fr 1fr; font-size: 14px; padding: 14px 16px; }
  .pricing-row > div:nth-child(2) { display: none; }
  .cta-banner { padding: 32px 20px; }
  .hero-sub { font-size: 17px; }
}
