/* ============================================================================= */
/* Logical section ordering 
/*    (Tokens → Base → Layout → Typography → Components → Forms → Tables → Utilities → Media)
/*     Header,  Footer ?
/* ============================================================================= */

/* ============================================================================ */
/*  1) Tokens
/* ============================================================================ */
:root {
	/* Brand palette */
  --brand:      #000a73;      /* ocean blue */
  --brand-2:    #00b4d8;      /* aqua accent  */
  --brand-dark: #0085a1;      /* darker aqua */
  --text:       #000000;      /*  org - deep navy 0b2239  */
  --textw:      #ffffff;      /* White text  */
  --textb:      #ffffff;      /* Black Text  */
  --muted:      #5a7184;      /* slate */
  --red:        #c7372f;      /* Red   */
  --red2:       #e11d48;      /* Red   */
  --black:      #000000;      /* Black */
  --card:       #ffffff;      /* white */
  --ink:        #0a2540;      /* deep navy */
  --white:      #ffffff;      /* white */
  --sun:        #ffd166;      /* warm sun */
  --border:     #e5edf3;      /* subtle border */
  
  
  --shadow: 0 10px 30px rgba(10,37,64,.08);
  --radius: 16px;
  
  --bg:      #ffffff;   /*  Backgrounds - #f0f7fb =  light ocean */
  
   /* Accents */
  --brand-ink:     #0b2239;
  --accent-top:    #0077b6;
  --accent-bottom: #00b4d8;
  --accent:       #19c37d;       /* green accent */

    /* Neutral ink scale */
  --ink-900: #0a0a0a;   /* dark gray almost pure black */
  --ink-700: #2b2b2b;
  --ink-500: #555555;
  --ink-300: #808080;
  --ink-200: #9aa0a6;
  --ink-100: #e5e7eb;
  --bg-alt:  #f7fafc;
  
   /* Components */
  --card:    #ffffff;
  --link:    #0077b6;
  
  /* Footer tokens */
  --footer-bg:    var(--brand);            /* footer background */
  --footer-fg:    #000000;                /* footer text */
  --footer-link:  #eaf2ff;                /* footer links */
  --footer-line:  #042a94;                /* footer dividers/borders */

  /* Layout & effects */
  --radius-xl: 1.25rem;
  --radius-lg: 1rem;
  --radius-md: .75rem;
  --radius-sm: .5rem;
  --shadow-soft: 0 10px 30px rgba(0,0,0,.07);
  --shadow-card: 0 8px 20px rgba(18,97,105,.12);
  --container: 1000px
}


/* ============================================================================ */
/* 2) Base elements (global defaults for typography) */
/* ============================================================================ */
.plan-inner-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* 2 equal columns */
  gap: 20px;
  align-items: start;
  padding: 16px 20px;   /* ⬅️ add side + top/bottom spacing */
}

/* Media is used for videos */
@media (max-width: 600px) {
.plan-inner-2 {
    grid-template-columns: 1fr; /* stack on small screens */
	padding: 16px;              /* consistent padding on mobile */
  }
}

/* ============================================================================ */
/* Global typography defaults */
/* ============================================================================ */

h1 {
  margin: 0 0 0.75rem; font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.2;
  color: var(--text);     /* deep navy as default */
}

h2 {
  margin: 0 0 0.75rem; font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; line-height: 1.25;
  color: var(--text);     /* deep navy as default */
  
}

h3 {
  margin: 0 0 0.75rem; font-size: clamp(1.4rem, 2.5vw, 1.75rem); font-weight: 700; line-height: 1.3;
  color: var(--text);
}

h4 {
  margin: 0 0 0.5rem; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.35;
  color: var(--text);
}

h5 {
  margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 600; line-height: 1.4;
  color: var(--text);
}

h6 {
  margin: 0 0 0.5rem; font-size: 1rem; font-weight: 600; line-height: 1.4;
  color: var(--text);
}

p {
  margin: 0 0 1rem; font-size: 1rem; line-height: 1.6; color: var(--ink-700); /* medium-dark gray as default */
}

body { margin: 0; font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  color: var(--ink-900); background: var(--bg)
}

a {
  color: var(--link);
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px
}

a:not(.btn):hover {
  text-decoration-line: underline;
  text-decoration-color: var(--link);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px
}

img { max-width: 100%; display: block
}

/* ============================================================================ */
/* 3) Layout & structure */
/* ============================================================================ */

.grid { display: grid; gap: clamp(16px,2vw,24px)
}

.hero {  padding-block: clamp(20px,5vw,40px); background: radial-gradient(60% 90% at 10% 0%,rgba(0,120,212,.10),
        transparent 60%),radial-gradient(60% 90% at 90% 0%,rgba(0,150,214,.12),transparent 60%),
		linear-gradient(180deg,#fff,#fdfefe)
}

.hero .wrapper { display: grid; gap: 28px; grid-template-columns: 1.2fr .8fr; align-items: center
}

.hero h1 { font-size: clamp(2rem,5vw,3.25rem); line-height: 1.08; margin: .25rem 0 1rem
}

.hero p { font-size: clamp(1rem,1.7vw,1.125rem); color: var(--ink-700)
}

.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px
}
/* For art work and photos */
.hero .art {  border-radius: var(--radius-xl);  border: 1px solid var(--border);  box-shadow: var(--shadow-card);  
             overflow: hidden
}


/* Header  */
.header { background-color: var(--brand);
}

/* Footer  .footer-grid p    {color: #ffffff}
.footer-grid h1   {color: #ffffff}
.footer-grid h2   {color: #ffffff}
.footer-grid h3   {color: #ffffff}
.footer-grid h4   {color: #ffffff}
.footer-grid a    {color: #ffffff}*/

.footer { width: 100%;  padding: 20px; background-color: var(--brand); color:white;
}
/* Makes .footer text white  */

.footer,
.footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
.footer p,
.footer a {
  color: #ffffff !important;
}

footer .container {
  color: #ffffff !important;
}

.footer a:hover {
  color: var(--footer-link, #eaf2ff);
}

/* Section divider at top of footer area or grid */
.footer-top { width: 100%; background-color: var(--brand); padding: 20px; padding-block: 42px; color: white;
}

/* Footer grid headings */
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); /* desktop */ gap: 20px;
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; }
}

/* End - Footer grid headings */


/* Meta text under footer -  or derive: color-mix(in srgb, var(--footer-fg) 82%, transparent); */
.footer-meta { background-color: var(--brand); padding-block: 20px; color: white; 
}

/* Legal links row & dividers */
.footer-links {  background-color: var(--brand); padding: 14px 0 16px;  border-bottom: 1px solid var(--footer-line);
}

.footer-links .legal-list a:hover { color: var(--footer-link);  opacity: 1;  
                              padding: 14px 0 16px;  border-bottom: 1px solid var(--footer-line);
}

.footer-links .legal-list { margin: 0; padding: 0; list-style: none; display: flex; gap: 18px 24px;  flex-wrap: wrap
}

/* ============================================================================ */
/* 4) Typography helpers */
/* ============================================================================ */

.lead .wrap { display: grid; grid-template-columns: 1.05fr .95fr; border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card)
}

.lead .form { padding: clamp(22px,3vw,40px); background: #fff
}

.lead h2 { font-size: clamp(1.6rem,3.2vw,2.1rem); margin: 0 0 8px
}

.lead .sub { color: var(--ink-700); margin: 0 0 18px
}

.lead-form .formgrid { display: grid; gap: 16px 24px; grid-template-columns: 1fr 1fr
}

.lead .fineprint {
  color: var(--ink-500);
  font-size: .9rem
}

.lead .media {
  position: relative;
  min-height: 360px;
  background: #000
}

.lead .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.lead .media .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 84px;
  height: 84px; border-radius: 999px; background: rgba(0,0,0,.6)
}

.lead .media .play::before { content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-40%,-50%); width: 0; height: 0; border-left: 18px solid var(--white, #ffffff);
  border-top: 12px solid transparent; border-bottom: 12px solid transparent
}

/* ============================================================================ */
/* 5) Components */
/* ============================================================================ */

* {
  box-sizing: border-box
}
.eyebrow {
  display: block;          /* puts it on its own line */
  font-size: 0.75rem;      /* smaller than body text */
  font-weight: 600;        /* semi-bold for emphasis */
  text-transform: uppercase;
  letter-spacing: 0.05em;  /* a little tracking for readability */
  color: #000000; /* uses your muted color variable if available */
  margin-bottom: 0.25rem;  /* space before the main heading */
}

/* ============================================================================ */
/* 2) Base elements */
/* ============================================================================ */

html,body {
  height: 100%
}

/* ============================================================================ */
/* 3) Layout & structure */
/* ============================================================================ */

.container { width: 1000px; margin-inline: auto; padding-inline: clamp(16px,3vw,28px)
   background-color: #000a73;  color: #000000;   /* keep text visible */ 
   padding: 20px; color: black;
}


/* ============================================================================ */
/* 5) Components (buttons, cards, badges, etc.) */
/* ============================================================================ */

.btn {
  display: inline-block;  border: 1px solid transparent; padding: .9rem 1.15rem;  border-radius: 999px;
  font-weight: 600; line-height: 1; transition: .2s ease;
  background: #000a73; color: #ffffff
}

.btn:hover {
  filter: brightness(.95);
  text-decoration: none
}

.btn.outline { background: transparent; border-color: var(--white, #ffffff);
  font-size:1.5rem; font-weight:800; color: #000000
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(16px,2vw,28px);
  box-shadow: var(--shadow-card)
}


.header .nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem .5rem
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  color: #fff
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(180deg,#5bb6ff,var(--bg, #f7fafc));
  color: var(--text, #0b2239);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 3px 10px rgba(0,0,0,.18),0 0 0 2px rgba(255,255,255,.55) inset;
  display: grid;
  place-items: center
}

.brand em {
  font-style: normal;
  color: #fff
}
/* Menu    */

.menu { display: flex; gap: .5rem; align-items: center
}

.menu>li { list-style: none; position: relative
}

.menu>li>a { display: block; padding: .6rem .9rem; border-radius: 999px; 
             color: var(--white, #ffffff); font-weight: 600
}

.menu>li>a:hover { background: rgba(255,255,255,.08); text-decoration: underline;
                   text-decoration-color: var(--bg, #f7fafc); text-underline-offset: 3px;
                   text-decoration-thickness: 2px
}

.menu li:focus-within>.dropdown,.menu li:hover>.dropdown { opacity: 1;  
                                                           transform: translateY(0); pointer-events: auto
}

.dropdown { position: absolute; top: 110%; left: 0; min-width: 260px; background: var(--white, #ffffff);
            border: 1px solid var(--border);  border-radius: var(--radius-lg);  box-shadow: var(--shadow-soft);
            opacity: 0; transform: translateY(6px);  pointer-events: none; transition: .18s ease
}

.dropdown a { display: block; padding: .85rem 1rem; color: var(--ink-700)
}

.dropdown a:hover { background: var(--bg-alt); text-decoration: underline;  text-underline-offset: 3px;
                    text-decoration-thickness: 2px; text-decoration-color: var(--link)
}

#nav-toggle { display: none
}

.hamburger {  display: none; align-items: center; gap: .5rem; border: 1px solid rgba(255,255,255,.35);
              padding: .6rem .8rem;  border-radius: 999px; color: #fff
}

/* ============================================================================ */
/* 9) Media queries */
/* ============================================================================ */

@media (max-width:960px) {
  .menu {
    display: none;
    position: fixed;
    inset: 64px 16px auto 16px;
    background: var(--white, #ffffff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-soft)
  }

  #nav-toggle:checked~.menu {
    display: flex
  }

  .hamburger {
    display: flex
  }

  .menu>li>a {
    color: #1f2937
  }

}

.header-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden
}

.header-bg-slides span {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: headerFade 24s linear infinite
}

.header-bg-slides span:nth-child(1) {
  animation-delay: 0s
}

.header-bg-slides span:nth-child(2) {
  animation-delay: 6s
}

.header-bg-slides span:nth-child(3) {
  animation-delay: 12s
}

.header-bg-slides span:nth-child(4) {
  animation-delay: 18s
}

.header-bg-slides span::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg,rgba(0,10,115,.86),rgba(0,10,115,.92))  */
}

@keyframes headerFade {
  0% {
    opacity: 0
  }

  4% {
    opacity: 1
  }

  21% {
    opacity: 1
  }

  25% {
    opacity: 0
  }

  100% {
    opacity: 0
  }

}

.trust {
  padding: 22px 0;
  background: var(--white, #ffffff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.trust .logos {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 22px;
  opacity: .7;
  filter: grayscale(1)
}

.tiles {
  padding-block: clamp(36px,6vw,72px);
  background: var(--bg)
}

.tiles h2 {
  font-size: clamp(1.6rem,3.2vw,2.2rem);
  margin: 0 0 8px
}

.tile-grid { display: grid; grid-template-columns: repeat(3,1fr);  gap: clamp(16px,2vw,24px)
}

.tile { position: relative; padding: 0; overflow: hidden
}

.tile header { padding: 22px
}

.tile .cover { height: 160px;background: linear-gradient(135deg,rgba(0,120,212,.2),rgba(0,94,184,.15)),
               radial-gradient(80% 80% at 100% 0%,rgba(0,150,214,.25),transparent 60%)
}

.tile footer { display: flex; justify-content: space-between; align-items: center;  
               padding: 18px 22px; border-top: 1px solid var(--border)
}

.tile strong { font-size: 1.25rem
}


/* ============================================================================
   Grid for home page offers 3 in a row
  ============================================================================ */
  
.plan-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top:5px; 
             background: var(--bg-alt);
}

@media (max-width:1024px) { .plan-grid3 { grid-template-columns: 1fr 1fr;} /* 2 columns */
}

@media (max-width:720px) { .plan-grid3 { grid-template-columns: 1fr;} /* 1 column */
}

/* ============================================================================
   End - Grid for home page offers 3 in a row
  ============================================================================  */


.plan { position: relative; padding-top:40px; color:black;
}

.plan .ribbon { position: absolute; top: 12px; right: 12px;  background: linear-gradient(180deg,var(--accent-top),var(--accent-bottom));
                color: var(--white, #ffffff); padding: .35rem .6rem; border-radius: 999px; font-size: .8rem; font-weight: 700
}

.price { display: flex; align-items: flex-end; gap: 6px; margin: 10px 0 0;
       color:#000000
}

.price b {font-size: 2.2rem ;  color:#000000
}


.price small {  color:#000000
}

.features {
  margin: 14px 0 18px;
  padding: 0
}

.features li {
  list-style: none;
  padding: 6px 0;
  display: flex;
  gap: 10px;
  color: var(--ink-700)
}

.split {
  padding-block: clamp(36px,6vw,72px)
}

.split .frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px,2vw,24px);
  align-items: center
}

.split h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem,2.6vw,1.9rem)
}

.badge {
  display: inline-block;
  background: rgba(0,120,212,.08);
  color: var(--brand);
  border: 1px solid rgba(0,120,212,.25);
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700
}

.testimonial {
  padding-block: clamp(36px,6vw,72px);
  background: linear-gradient(180deg,#fff,#fbfeff)
}

.quote {
  font-size: clamp(1.1rem,2.2vw,1.4rem);
  line-height: 1.6
}

.cta-band {
  padding-block: clamp(28px,5vw,56px);
  background: radial-gradient(80% 140% at 100% 0%,rgba(0,120,212,.25),transparent 55%),linear-gradient(180deg,var(--text, #0b2239),var(--black, #000000));
  color: var(--white, #ffffff);
  border-top: 1px solid #0f1a26
}

.cta-band .box {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center
}

.cta-band .box p {
  margin: 0;
  color: #fff
}




/* ============================================================================ */
/* 4) Typography helpers */
/* ============================================================================ */

.lead {
  padding-block: clamp(28px,6vw,64px)
}

.field {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--bg, #f7fafc);
  padding: 12px 2px;
  background: transparent
}

.field::placeholder {
  color: #9aa0a6
}

.field:focus {
  outline: none;
  border-bottom-color: var(--brand);
  box-shadow: 0 2px 0 0 var(--brand) inset
}

.btn.red {
  background: #c7372f;
  border-color: #c7372f
}

.btn.red:hover {
  filter: brightness(.95)
}

.btn.big {
  padding: 1.05rem 1.5rem;
  font-weight: 700;
  letter-spacing: .02em
}

.plans-calling {
  padding-block: clamp(36px,6vw,72px);
  background: var(--bg)
}

.plans-calling h2 {
  margin: 0 0 8px
}

/* Three columns */
.calling-grid-3 {
  display: grid;
  gap: clamp(16px,2vw,24px);
  grid-template-columns: repeat(3,1fr)
}

  /* Three columns */
.columns-3 {
  display: grid;
  gap: clamp(16px,2vw,24px);
  grid-template-columns: repeat(3,1fr)
}

/* two columns */
.calling-grid-2 {
  display: grid;
  gap: clamp(16px,2vw,24px);
  grid-template-columns: repeat(2,1fr)
}

/* two columns */
.columns-2 {
  display: grid;
  gap: clamp(16px,2vw,24px);
  grid-template-columns: repeat(2,1fr)
}

.plan-call {
  position: relative;
  padding-top: 24px;
}

.plan-call .band { position: absolute; top: -1px;  left: 50%;  transform: translateX(-50%); width: calc(100% - 24px);
  text-align: center;  font-weight: 800; letter-spacing: .02em;  padding: .5rem .75rem; border-radius: 0 0 14px 14px ;
  color: var(--white, #ffffff);
}

.plan-call .band.popular { background: #c7372f;
}

.plan-call .band.value { background: #273242;
}

.plan-call .subline { margin-top: 6px; font-size: .9rem; line-height: 1.25; color: #000000;
}

.features.red { margin: 14px 0 18px
}

.features.red li { list-style: disc; padding: 6px 0 6px 2px
}

.features.red li::marker { color: #e11d48;
}

.btn.ghost {
  background: var(--white, #ffffff);
  color: var(--black, #000000);
  border: 1.5px solid #0b0b0b;
}

.btn.ghost:hover {
  background: #f1f5f9;
}

.page-hero {
  padding: 36px 0 18px;
  background: linear-gradient(180deg,#000a73,#071a7a)
}

.page-hero h1 {
  margin: 0;
  color: var(--black, #000000);
  font-size: clamp(1.8rem,3.6vw,2.4rem)
}

.page-hero p {
  margin: .35rem 0 0;
  color: #e2e8f0
}

.compare {
  padding-block: clamp(24px,6vw,56px)
}

.plans-head {
  display: grid;
  grid-template-columns: 2fr repeat(3,1fr);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden
}

.plans-head>div {
  padding: 14px 14px;
  background: var(--bg, #f7fafc);
  border-right: 1px solid var(--border)
}

.plans-head>div:last-child {
  border-right: none
}

.plans-head .title {
  background: var(--bg, #f7fafc);
  font-weight: 800
}

.plan-title {
  font-size: 1.15rem;
  font-weight: 800
}

.sub {
  color: var(--ink-500);
  font-size: .9rem
}

.band.pop {
  background: #c7372f
}

.band.value {
  background: #273242
}

/* ============================================================================ */
/* 7) Tables */
/* ============================================================================ */

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-top: none
}

.check {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%,var(--brand, #0077b6) 0 46%,var(--white, #ffffff) 47% 100%);
  box-shadow: inset 0 0 0 2px #10b981
}

.note {
  color: var(--ink-500);
  font-size: .9rem
}

/* ============================================================================ */
/* 8) Utilities */
/* ============================================================================ */

html {
  scroll-behavior: smooth;
}


.sr-only { position: absolute; width: 1px; height: 1px;  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);  white-space: nowrap;  border: 0
}

/* ============================================================================ */
/* 7) Tables */
/* ============================================================================ */

th,td { padding: 12px 14px; border-bottom: 1px solid var(--border);vertical-align: top
}

tbody tr.section th { background: var(--text, #0b2239); color: var(--white, #ffffff);  font-weight: 800; font-size: .95rem; padding: 10px 14px
}

th:first-child,td:first-child { background: var(--bg, #f7fafc); font-weight: 600
}

td.center { text-align: center
}

/* ============================================================================
   9) Media queries */
  ============================================================================ */

@media (max-width:900px) { .hero .wrapper { grid-template-columns: 1fr } .trust .logos { grid-template-columns: repeat(3,1fr)}
}

@media (max-width:1024px) {  .tile-grid { grid-template-columns: 1fr 1fr }
}

@media (max-width:720px) { .tile-grid { grid-template-columns: 1fr }
}


/* ============================================================================
   Grid for something? 
  ============================================================================ */


@media (max-width:900px) { .split .frame { grid-template-columns: 1fr }
} 

@media (max-width:900px) { .cta-band .box { flex-direction: column; align-items: flex-start }
}

@media (max-width:900px) {.lead .wrap { grid-template-columns: 1fr } .lead-form .formgrid { grid-template-columns: 1fr }
}



/* ============================================================================ 
    For Compare_Plans.php  Page - needs to be cleanded up
 ============================================================================ */

/* =============================================================================

* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: Inter, system-ui, -apple-system, Segoe UI, 
             Roboto, Arial, sans-serif; color:var(--ink); 
			 background: linear-gradient(180deg, #eaf7ff 0%, #f6fbff 60%, #ffffff 100%); 
}
============================================================================== */

/* Global Header */
.site-header { position: sticky; top: 0; z-index: 50; background: linear-gradient(135deg, #000a73 0%, 
               var(--brand-dark) 60%, #00c2de 100%); color:#ffffff; border-bottom: 4px solid rgba(255,255,255,.12);
}
.site-header .bar { display:flex; align-items:center; justify-content:space-between; gap:16px; 
                    padding:4px 20px 4px; max-width:1200px; margin:0 auto; 
}

.brand { display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px; 
         text-decoration:none; color:#fff; 
}
.brand .logo { width:32px; height:32px; border-radius:8px; background:#ffffff; display:inline-block; 
}

.nav a { color:#e8f7fb; text-decoration:none; margin-left:16px; font-weight:600; 
}

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

/* Toggle */
.toggle-wrap{ display:flex; align-items:center; gap:14px; margin-top:18px; 
}

.switch{ position:relative; width:62px; height:34px; background:#e2eef6; 
         border-radius:999px; cursor:pointer; padding:4px; transition:.2s; 
}
.switch input{ display:none; }
.knob{ position:absolute; top:4px; left:4px; width:26px; height:26px; background:#fff; border-radius:50%; box-shadow: var(--shadow); transition:.25s; }
.switch input:checked + .knob{ left:32px; background: var(--accent); }
.save-badge{ display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:13px; color:#054e2b; background:#e6f8ef; padding:6px 10px; border-radius:999px; border:1px solid #c6f0da; }



.card{ background: var(--card); border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); display:flex; flex-direction:column; overflow:hidden; }
.card .head{ padding:22px 22px 10px; border-bottom:1px solid var(--border); background: linear-gradient(180deg,#ffffff, #f7fcff); }
.badge{ display:inline-block; font-weight:700; font-size:12px; color:#034f66; background:#dff7ff; padding:6px 10px; border-radius:999px; border:1px solid #bfeeff; }
.popular{ background:#fff4df; color:#7a4a00; border-color:#ffe4a8; }
.title{ font-size:20px; font-weight:800; margin:12px 0 4px; }
.subtitle{ font-size:14px; color:var(--muted); margin:0 0 14px; }

.price{ padding:18px 22px; display:flex; align-items:baseline; gap:8px; }
.amount{ font-size:36px; font-weight:800; letter-spacing:-0.02em; }
.period{ font-size:14px; color:var(--muted); }
.note{ font-size:12px; color:#0b5132; background:#e6f8ef; border:1px solid #c6f0da; padding:6px 8px; border-radius:8px; display:inline-block; margin-left:auto; }

ul.features{ list-style:none; padding:0 22px; margin:0; display:flex; flex-direction:column; gap:10px; }
ul.features li{ display:flex; align-items:flex-start; gap:10px; padding:4px 0; }
.check{ width:20px; height:20px; flex:0 0 20px; border-radius:50%; display:inline-grid; place-items:center; border:2px solid var(--accent); }

.cta{ padding:20px 22px 24px; margin-top:auto; }
.btn{ display:block; text-align:center; width:100%; padding:12px 16px; border-radius:12px; font-weight:700; border:2px solid var(--brand); color:#fff; background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%); text-decoration:none; }
.btn.alt{ background:#fff; color:var(--brand-dark); }



/* Utility */
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Makes menu visible on small screens (bypass toggle) */

@media (max-width:960px){
  .menu{ display:flex !important; }
  #nav-toggle, .hamburger{ display:none !important; }
}
/* for learn sheets */

/* make summary text flat left */
details.acc > summary {
  list-style: none;         /* remove default bullet/marker */
  text-align: left;         /* force text left */
  padding-left: 0;          /* kill default padding */
  margin-left: 0;
}

/* also ensure the content is left-aligned */
details.acc .acc-body,
details.acc .acc-body p {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}