/* ============================================================
   AnimSay Event Technologies — styles.css
   
   TABLE OF CONTENTS:
   1. CSS Variables (colors, fonts)
   2. Reset & Base
   3. Navigation
   4. Hero Section
   5. Stats Bar
   6. Section Commons
   7. Services
   8. Corporate Section
   9. Stage Diagram
   10. Process Steps
   11. Contact & Form
   12. Footer
   13. Animations
   14. Responsive (Mobile)
   ============================================================ */


/* ── 1. CSS VARIABLES ── */
:root {
  --bg:        #080a0d;
  --surface:   #0f1217;
  --surface2:  #161b22;
  --accent:    #00c2ff;
  --gold:      #f0c040;
  --purple:    #c084fc;
  --text:      #e8edf2;
  --muted:     #6b7a8d;
  --border:    rgba(255, 255, 255, 0.06);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}


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

html { scroll-behavior: smooth; }

body {
  background:              var(--bg);
  color:                   var(--text);
  font-family:             var(--font-body);
  font-size:               16px;
  line-height:             1.7;
  -webkit-font-smoothing:  antialiased;
  overflow-x:              hidden;
}


/* ── 3. NAVIGATION ── */
nav {
  position:        fixed;
  top: 0; left: 0; right: 0;
  z-index:         200;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         1.1rem 5%;
  background:      rgba(8, 10, 13, 0.9);
  backdrop-filter: blur(14px);
  border-bottom:   1px solid var(--border);
}

.logo {
  font-family:     var(--font-display);
  font-size:       1.4rem;
  letter-spacing:  0.06em;
  color:           var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.logo sub {
  font-size:      0.55rem;
  color:          var(--muted);
  letter-spacing: 0.12em;
  vertical-align: baseline;
  margin-left:    3px;
  font-family:    var(--font-body);
  font-weight:    500;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display:    flex;
  gap:        2rem;
}
nav ul a {
  color:           var(--muted);
  text-decoration: none;
  font-size:       0.88rem;
  letter-spacing:  0.02em;
  transition:      color 0.2s;
}
nav ul a:hover { color: var(--text); }

.nav-cta {
  background:      var(--accent);
  color:           #000;
  font-weight:     600;
  font-size:       0.82rem;
  padding:         0.55rem 1.35rem;
  border-radius:   var(--radius-sm);
  text-decoration: none;
  letter-spacing:  0.04em;
  transition:      opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }


/* ── 4. HERO SECTION ── */
.hero {
  min-height:      100vh;
  display:         flex;
  flex-direction:  column;
  justify-content: flex-end;
  padding:         0 5% 6rem;
  position:        relative;
  overflow:        hidden;
}

/* Light beam background */
.stage-lights {
  position: absolute;
  inset:    0;
  z-index:  0;
  overflow: hidden;
}
.beam {
  position:         absolute;
  top:              -10%;
  width:            260px;
  height:           110%;
  opacity:          0.07;
  transform-origin: top center;
}
.beam-1 { left: 5%;  background: linear-gradient(180deg, var(--accent) 0%, transparent 80%); transform: rotate(-18deg); animation: flickerA 5s   ease-in-out infinite; }
.beam-2 { left: 25%; background: linear-gradient(180deg, var(--gold)   0%, transparent 80%); transform: rotate(-6deg);  animation: flickerB 7s   ease-in-out infinite; }
.beam-3 { left: 50%; background: linear-gradient(180deg, #fff           0%, transparent 80%); transform: rotate(4deg);   animation: flickerA 6s   ease-in-out infinite 1s; }
.beam-4 { left: 72%; background: linear-gradient(180deg, var(--accent) 0%, transparent 80%); transform: rotate(14deg);  animation: flickerB 8s   ease-in-out infinite 0.5s; }
.beam-5 { left: 88%; background: linear-gradient(180deg, var(--gold)   0%, transparent 80%); transform: rotate(22deg);  animation: flickerA 4.5s ease-in-out infinite 2s; }

/* Fog fade at bottom of hero */
.hero::before {
  content:    '';
  position:   absolute;
  bottom: 0; left: 0; right: 0;
  height:     35%;
  background: linear-gradient(to top, var(--bg) 30%, transparent);
  z-index:    1;
}

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

.hero-kicker {
  display:         inline-flex;
  align-items:     center;
  gap:             0.6rem;
  font-size:       0.72rem;
  font-weight:     600;
  letter-spacing:  0.18em;
  text-transform:  uppercase;
  color:           var(--accent);
  margin-bottom:   1.5rem;
}
.hero-kicker::before {
  content:       '';
  display:       block;
  width:         28px;
  height:        2px;
  background:    var(--accent);
  border-radius: 2px;
}

.hero h1 {
  font-family:    var(--font-display);
  font-size:      clamp(4.5rem, 11vw, 10rem);
  line-height:    0.92;
  letter-spacing: 0.02em;
  margin-bottom:  1.75rem;
}
.hero h1 .hl  { color: var(--accent); }
.hero h1 .hl2 { color: var(--gold); }

.hero-desc {
  color:         var(--muted);
  font-size:     1.05rem;
  max-width:     50ch;
  font-weight:   300;
  margin-bottom: 2.5rem;
  line-height:   1.8;
}

.hero-actions {
  display:   flex;
  gap:       1rem;
  flex-wrap: wrap;
}

/* Reusable button styles */
.btn-primary {
  background:      var(--accent);
  color:           #000;
  font-weight:     600;
  padding:         0.9rem 2.2rem;
  border-radius:   var(--radius-sm);
  text-decoration: none;
  font-size:       0.92rem;
  letter-spacing:  0.04em;
  border:          none;
  cursor:          pointer;
  font-family:     var(--font-body);
  display:         inline-block;
  transition:      opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  border:          1px solid rgba(255, 255, 255, 0.15);
  color:           var(--text);
  padding:         0.9rem 2.2rem;
  border-radius:   var(--radius-sm);
  text-decoration: none;
  font-size:       0.92rem;
  display:         inline-block;
  transition:      border-color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.35); }

.specialty-strip {
  display:      flex;
  align-items:  center;
  gap:          1rem;
  background:   rgba(0, 194, 255, 0.07);
  border:       1px solid rgba(0, 194, 255, 0.18);
  border-radius: var(--radius-sm);
  padding:      0.75rem 1.25rem;
  width:        fit-content;
  margin-top:   2.5rem;
}
.specialty-strip .dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    var(--accent);
  animation:     blink 2s ease-in-out infinite;
}
.specialty-strip p {
  font-size:      0.82rem;
  color:          var(--accent);
  font-weight:    500;
  letter-spacing: 0.06em;
}
.specialty-strip strong { color: var(--text); font-weight: 600; }


/* ── 5. STATS BAR ── */
.stats-bar {
  background:             var(--surface);
  border-top:             1px solid var(--border);
  border-bottom:          1px solid var(--border);
  padding:                2.25rem 5%;
  display:                grid;
  grid-template-columns:  repeat(auto-fit, minmax(140px, 1fr));
  gap:                    1rem;
}
.stat { text-align: center; }
.stat-num {
  font-family:    var(--font-display);
  font-size:      2.6rem;
  letter-spacing: 0.04em;
  color:          var(--accent);
  line-height:    1;
}
.stat-label {
  font-size:      0.76rem;
  color:          var(--muted);
  margin-top:     0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight:    500;
}


/* ── 6. SECTION COMMONS ── */
section { padding: 6rem 5%; }

.section-label {
  font-size:      0.7rem;
  font-weight:    600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  1rem;
  display:        flex;
  align-items:    center;
  gap:            0.6rem;
}
.section-label::before {
  content:       '';
  width:         22px;
  height:        2px;
  background:    var(--accent);
  border-radius: 2px;
  display:       block;
}

.section-title {
  font-family:    var(--font-display);
  font-size:      clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height:    1;
  margin-bottom:  1rem;
}

.section-sub {
  color:       var(--muted);
  max-width:   54ch;
  font-weight: 300;
  font-size:   0.97rem;
  line-height: 1.8;
}


/* ── 7. SERVICES ── */
.services-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:                   1.5rem;
  margin-top:            3.5rem;
}

.svc-card {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:       2rem;
  position:      relative;
  overflow:      hidden;
  transition:    border-color 0.25s, transform 0.2s;
}
.svc-card:hover {
  border-color: rgba(0, 194, 255, 0.22);
  transform:    translateY(-3px);
}

/* Colored top accent line per card type */
.svc-card::before {
  content:       '';
  position:      absolute;
  top: 0; left: 0; right: 0;
  height:        3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card.audio::before  { background: linear-gradient(90deg, var(--accent), transparent); }
.svc-card.visual::before { background: linear-gradient(90deg, var(--gold),   transparent); }
.svc-card.light::before  { background: linear-gradient(90deg, var(--purple), transparent); }

.svc-icon {
  width:         52px;
  height:        52px;
  border-radius: var(--radius-md);
  display:       flex;
  align-items:   center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size:     1.5rem;
}
.svc-card.audio .svc-icon  { background: rgba(0,   194, 255, 0.1); }
.svc-card.visual .svc-icon { background: rgba(240, 192, 64,  0.1); }
.svc-card.light .svc-icon  { background: rgba(192, 132, 252, 0.1); }

.svc-card h3 {
  font-family:    var(--font-display);
  font-size:      1.55rem;
  letter-spacing: 0.05em;
  margin-bottom:  0.65rem;
  line-height:    1;
}
.svc-card.audio h3  { color: var(--accent); }
.svc-card.visual h3 { color: var(--gold); }
.svc-card.light h3  { color: var(--purple); }

.svc-card p {
  font-size:     0.9rem;
  color:         var(--muted);
  line-height:   1.75;
  font-weight:   300;
  margin-bottom: 1.5rem;
}

.svc-items {
  list-style:     none;
  display:        flex;
  flex-direction: column;
  gap:            0.5rem;
}
.svc-items li {
  font-size:   0.85rem;
  color:       var(--text);
  display:     flex;
  align-items: center;
  gap:         0.65rem;
  font-weight: 400;
}
.svc-items li::before {
  content:       '';
  width:         5px;
  height:        5px;
  border-radius: 50%;
  flex-shrink:   0;
}
.svc-card.audio .svc-items li::before  { background: var(--accent); }
.svc-card.visual .svc-items li::before { background: var(--gold); }
.svc-card.light .svc-items li::before  { background: var(--purple); }

/* Wide LED card spans full grid width */
.svc-card.wide {
  grid-column:           1 / -1;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   2.5rem;
  align-items:           center;
}

/* Animated LED pixel grid */
.svc-visual {
  background:    var(--surface2);
  border-radius: var(--radius-md);
  aspect-ratio:  16 / 9;
  border:        1px solid var(--border);
  overflow:      hidden;
}
.led-grid {
  display:               grid;
  grid-template-columns: repeat(12, 1fr);
  gap:                   3px;
  padding:               16px;
  width:                 100%;
  height:                100%;
}
.led-pixel {
  border-radius: 2px;
  aspect-ratio:  1;
  animation:     ledPulse 3s ease-in-out infinite;
}


/* ── 8. CORPORATE SECTION ── */
.corp-section {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.corp-inner {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   5rem;
  align-items:           center;
}

.corp-events {
  display:        flex;
  flex-direction: column;
  gap:            1rem;
  margin-top:     2.5rem;
}

.corp-event {
  display:      flex;
  align-items:  center;
  gap:          1.25rem;
  background:   var(--surface2);
  border:       1px solid var(--border);
  border-radius: var(--radius-md);
  padding:      1rem 1.25rem;
  transition:   border-color 0.2s;
}
.corp-event:hover { border-color: rgba(0, 194, 255, 0.2); }

.corp-event-icon {
  font-size:       1.25rem;
  width:           42px;
  height:          42px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      rgba(0, 194, 255, 0.08);
  border-radius:   var(--radius-sm);
  flex-shrink:     0;
}

.corp-event h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
.corp-event p  { font-size: 0.8rem;  color: var(--muted); font-weight: 300; }


/* ── 9. STAGE DIAGRAM ── */
.stage-diagram {
  background:    var(--surface2);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:       2rem;
}

.stage-label {
  font-size:      0.68rem;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--muted);
  text-align:     center;
  margin-bottom:  1.5rem;
}

.stage-floor {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius-md);
  padding:       1.5rem 1.25rem 1.25rem;
}

.d-led-bar {
  background:    var(--surface2);
  border:        1px solid rgba(240, 192, 64, 0.3);
  border-radius: var(--radius-sm);
  height:        38px;
  display:       flex;
  align-items:   center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow:      hidden;
  position:      relative;
}
.d-led-bar::after {
  content:        'LED SCREEN';
  font-size:      0.62rem;
  font-weight:    700;
  letter-spacing: 0.2em;
  color:          var(--gold);
  opacity:        0.8;
}
.d-led-glow {
  position:   absolute;
  inset:      0;
  background: linear-gradient(90deg, transparent, rgba(240, 192, 64, 0.06), transparent);
  animation:  scan 2.5s linear infinite;
}

.d-lights-row {
  display:         flex;
  justify-content: space-between;
  margin-bottom:   0.75rem;
}
.d-light {
  width:         14px;
  height:        14px;
  border-radius: 50%;
  animation:     lightPulse 2s ease-in-out infinite;
}
.d-light:nth-child(odd)  { background: var(--accent); animation-delay: 0s;   }
.d-light:nth-child(even) { background: var(--purple); animation-delay: 0.5s; }

.d-stage-row {
  display:         flex;
  align-items:     flex-end;
  justify-content: center;
  gap:             1.5rem;
}

.d-podium {
  width:           48px;
  background:      var(--surface2);
  border:          1px solid var(--border);
  border-radius:   4px;
  height:          32px;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.d-speaker {
  width:           28px;
  height:          46px;
  background:      var(--surface2);
  border:          1px solid rgba(0, 194, 255, 0.25);
  border-radius:   var(--radius-sm);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       0.65rem;
  color:           var(--accent);
}
.d-label {
  font-size:      0.6rem;
  color:          var(--muted);
  text-align:     center;
  margin-top:     0.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ── 10. PROCESS STEPS ── */
.process-steps {
  display:               grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:                   0;
  background:            var(--border);
  border:                1px solid var(--border);
  border-radius:         14px;
  overflow:              hidden;
  margin-top:            3.5rem;
}
.ps-step {
  background:  var(--surface);
  padding:     2rem 1.75rem;
  transition:  background 0.2s;
}
.ps-step:hover { background: var(--surface2); }

.ps-num {
  font-family:    var(--font-display);
  font-size:      3rem;
  color:          rgba(0, 194, 255, 0.15);
  line-height:    1;
  margin-bottom:  0.75rem;
  letter-spacing: 0.04em;
}
.ps-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.ps-step p  { font-size: 0.83rem; color: var(--muted); font-weight: 300; line-height: 1.7; }


/* ── 11. CONTACT & FORM ── */
.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.contact-info { padding-top: 0.5rem; }
.contact-info h2 {
  font-family:    var(--font-display);
  font-size:      clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height:    1;
  margin-bottom:  1rem;
}
.contact-info h2 em { font-style: normal; color: var(--accent); }
.contact-info p {
  color:         var(--muted);
  font-weight:   300;
  font-size:     0.97rem;
  line-height:   1.8;
  margin-bottom: 2rem;
}

.contact-details {
  display:        flex;
  flex-direction: column;
  gap:            0.85rem;
}
.contact-detail {
  display:     flex;
  align-items: center;
  gap:         0.85rem;
  font-size:   0.88rem;
  color:       var(--muted);
}
.contact-detail a { color: var(--accent); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.cd-icon {
  width:           36px;
  height:          36px;
  background:      rgba(0, 194, 255, 0.08);
  border-radius:   var(--radius-sm);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  font-size:       0.95rem;
}

/* Form card */
.proposal-form {
  background:    var(--surface2);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:       2.5rem;
}

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

.field {
  display:        flex;
  flex-direction: column;
  gap:            0.4rem;
  margin-bottom:  1.1rem;
}

.field label {
  font-size:      0.78rem;
  font-weight:    600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--muted);
}

.field input,
.field select,
.field textarea {
  background:  var(--surface);
  border:      1px solid var(--border);
  border-radius: var(--radius-sm);
  color:       var(--text);
  font-family: var(--font-body);
  font-size:   0.92rem;
  padding:     0.75rem 1rem;
  outline:     none;
  width:       100%;
  transition:  border-color 0.2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field select option          { background: var(--surface2); }
.field input:focus,
.field select:focus,
.field textarea:focus         { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width:     100%;
  margin-top: 0.5rem;
  padding:   1rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.form-note {
  font-size:   0.75rem;
  color:       var(--muted);
  text-align:  center;
  margin-top:  0.85rem;
  font-weight: 300;
}

.form-success {
  display:    none;
  text-align: center;
  padding:    2rem 0;
}
.form-success h3 {
  font-family:    var(--font-display);
  font-size:      2rem;
  color:          var(--accent);
  letter-spacing: 0.04em;
  margin-bottom:  0.5rem;
}
.form-success p { color: var(--muted); font-weight: 300; font-size: 0.9rem; }


/* ── 12. FOOTER ── */
footer {
  padding:         2rem 5%;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  border-top:      1px solid var(--border);
  flex-wrap:       wrap;
  gap:             1rem;
}

.footer-logo {
  font-family:     var(--font-display);
  font-size:       1.1rem;
  letter-spacing:  0.06em;
  color:           var(--muted);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }

.footer-links { display: flex; gap: 1.75rem; }
.footer-links a {
  font-size:       0.8rem;
  color:           var(--muted);
  text-decoration: none;
  transition:      color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 0.75rem; color: var(--muted); }


/* ── 13. ANIMATIONS ── */
@keyframes flickerA {
  0%, 100% { opacity: 0.06; }
  50%       { opacity: 0.12; }
}
@keyframes flickerB {
  0%, 100% { opacity: 0.04; }
  40%       { opacity: 0.10; }
  80%       { opacity: 0.07; }
}
@keyframes blink {
  0%, 100% { opacity: 1;  }
  50%       { opacity: 0.3; }
}
@keyframes ledPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1;   }
}
@keyframes scan {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%);  }
}
@keyframes lightPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1;    }
}


/* ── 14. RESPONSIVE (MOBILE) ── */
@media (max-width: 840px) {
  nav ul        { display: none; }

  .svc-card.wide        { grid-template-columns: 1fr; }
  .corp-inner           { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner        { grid-template-columns: 1fr; gap: 2.5rem; }
  .stage-diagram        { display: none; }
  .form-row             { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   PACKAGES / PRICING SECTION
   ══════════════════════════════════════════════ */

#packages {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.packages-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
  margin-top:            3rem;
  align-items:           start;
}

.pkg-card {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: 16px;
  padding:       2rem;
  position:      relative;
  transition:    border-color 0.25s, transform 0.2s;
}
.pkg-card:hover {
  border-color: rgba(0, 194, 255, 0.25);
  transform:    translateY(-4px);
}
.pkg-card.featured {
  border-color: var(--accent);
  background:   linear-gradient(160deg, rgba(0,194,255,0.05) 0%, var(--bg) 60%);
  transform:    scale(1.03);
}
.pkg-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pkg-badge {
  position:      absolute;
  top:           -12px;
  left:          50%;
  transform:     translateX(-50%);
  background:    var(--accent);
  color:         #000;
  font-size:     0.65rem;
  font-weight:   600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding:       0.3rem 1rem;
  border-radius: 100px;
  white-space:   nowrap;
}

.pkg-header { margin-bottom: 1.5rem; }

.pkg-name {
  font-family:    var(--font-display);
  font-size:      1.6rem;
  letter-spacing: 0.04em;
  color:          var(--text);
  line-height:    1;
  margin-bottom:  0.35rem;
}
.pkg-tagline {
  font-size:   0.78rem;
  color:       var(--muted);
  font-weight: 300;
}

.pkg-price {
  display:     flex;
  align-items: baseline;
  gap:         0.3rem;
  margin-bottom: 0.4rem;
}
.pkg-amount {
  font-family:    var(--font-display);
  font-size:      3rem;
  letter-spacing: -0.02em;
  color:          var(--accent);
  line-height:    1;
}
.pkg-period {
  font-size:   0.82rem;
  color:       var(--muted);
  font-weight: 300;
}

.pkg-capacity {
  font-size:     0.75rem;
  font-weight:   500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:         var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pkg-features {
  list-style:     none;
  display:        flex;
  flex-direction: column;
  gap:            0.6rem;
  margin-bottom:  2rem;
}
.pkg-features li {
  font-size:   0.85rem;
  color:       var(--muted);
  display:     flex;
  align-items: flex-start;
  gap:         0.65rem;
  font-weight: 300;
  line-height: 1.5;
}
.pkg-features li::before {
  content:       '';
  width:         5px;
  height:        5px;
  border-radius: 50%;
  background:    var(--accent);
  flex-shrink:   0;
  margin-top:    0.45rem;
}

.pkg-btn {
  display:         block;
  width:           100%;
  text-align:      center;
  padding:         0.85rem;
  border-radius:   8px;
  font-size:       0.82rem;
  font-weight:     500;
  letter-spacing:  0.06em;
  text-transform:  uppercase;
  text-decoration: none;
  transition:      all 0.2s;
  cursor:          pointer;
}
.pkg-btn-primary {
  background: var(--accent);
  color:      #000;
  border:     none;
}
.pkg-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.pkg-btn-outline {
  background:  transparent;
  color:       var(--text);
  border:      1px solid var(--border);
}
.pkg-btn-outline:hover {
  border-color: var(--accent);
  color:        var(--accent);
}

.packages-note {
  margin-top:    2.5rem;
  padding:       1.25rem 1.5rem;
  background:    rgba(0, 194, 255, 0.04);
  border:        1px solid rgba(0, 194, 255, 0.12);
  border-radius: 10px;
  text-align:    center;
}
.packages-note p {
  font-size:   0.83rem;
  color:       var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Responsive packages */
@media (max-width: 900px) {
  .packages-grid        { grid-template-columns: 1fr; }
  .pkg-card.featured    { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-4px); }
}
