/* ====================================================
   CSS RESET & BASELINE FOR GLINTSHINE (Elegant Classic)
   ==================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F6F8FC;
  color: #222;
  font-family: 'Roboto', serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #143155;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #26A7DF;
  outline-offset: 2px;
}
strong {
  font-weight: bold;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
li + li {
  margin-top: 10px;
}

/* Typography Hierarchy */
h1, .hero h1      { font-family: 'Montserrat', serif; color: #143155; font-size: 2.3rem; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 18px; }
h2                { font-family: 'Montserrat', serif; color: #143155; font-size: 1.68rem; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 16px; }
h3                { font-family: 'Montserrat', serif; color: #143155; font-size: 1.22rem; font-weight: 500; margin-bottom: 10px; }
h4                { font-family: 'Montserrat', serif; color: #143155; font-size: 1.13rem; font-weight: 500; margin-bottom: 10px; }
.hero p,
p.lead, .content-wrapper > p:first-child {
  font-size: 1.18rem;
  margin-bottom: 16px;
}
p {
  margin-bottom: 14px;
}
.text-section h1, .text-section h2, .text-section h3, .text-section h4 {
  margin-top: 0;
}

/* ===============
   LAYOUT CONTAINERS
   =============== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px;
  }
}
/* Introduction of elegant spaciousness */
main > section:not(:last-child) {
  margin-bottom: 60px;
}

/* =================
   HEADER & NAVIGATION
   ================= */
header {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(20,49,85,0.03);
  position: sticky;
  top: 0;
  z-index: 1201;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  color: #143155;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EBEFF5;
  color: #26A7DF;
}
.cta-btn {
  font-family: 'Montserrat', serif;
  color: #fff;
  background: #143155;
  border: 1px solid #143155;
  border-radius: 30px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 32px;
  margin-left: 16px;
  margin-right: 0;
  box-shadow: 0 2px 8px 0 rgba(20,49,85,0.06);
  transition: background .23s, color .13s, box-shadow .21s, border-color .17s;
  cursor: pointer;

  display: inline-block;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #26A7DF;
  color: #fff;
  border-color: #26A7DF;
  box-shadow: 0 4px 16px 0 rgba(38,167,223,0.10);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.0rem;
  line-height: 1;
  color: #143155;
  padding: 7px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.16s;
  margin-left: 12px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #DEE3ED;
}
@media (max-width: 1019px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: auto;
  }
  header .container {
    gap: 16px;
  }
}

/* =========================
   MOBILE MENU OVERLAY (SLIDE)
   ========================= */
.mobile-menu {
  position: fixed;
  z-index: 1600;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f6f8fced;
  backdrop-filter: blur(3px);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.79,0,.22,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 18px;
  margin-left: 18px;
  font-size: 2rem;
  color: #143155;
  background: none;
  border: none;
  border-radius: 4px;
  transition: background .14s;
  padding: 5px 10px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ebeff5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 44px;
  width: 100%;
  padding-left: 24px;
}
.mobile-nav a {
  color: #143155;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 1.12rem;
  padding: 12px 0;
  border-radius: 7px;
  width: 100%;
  display: inline-block;
  transition: background .2s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DEE3ED;
  color: #26A7DF;
}
@media (min-width: 1020px) {
  .mobile-menu { display: none !important; }
}

/*  ===============================
    HERO/INTRO (Elegant Spacing)
    =============================== */
.hero {
  background: #143155 url('../assets/bg-hero.png') no-repeat center/cover;
  color: #fff;
  border-radius: 0 0 32px 32px;
  min-height: 320px;
  box-shadow: 0 6px 24px 0 rgba(20,49,85,0.09);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .content-wrapper {
  max-width: 650px;
  gap: 18px;
}
.hero .cta-btn {
  background: #fff;
  color: #143155;
  border: 1px solid #fff;
  margin-top: 16px;
  transition: background .22s, color .17s, border-color .20s;
}
.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background: #26A7DF;
  border-color: #26A7DF;
  color: #fff;
}
@media (max-width: 900px) {
  .hero .container {
    min-height: 180px;
  }
  .hero {
    min-height: 220px;
    padding: 36px 0 38px 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 36px;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* =================
   CARD/GRID/FEATURES
   ================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border: 1px solid #e2e6ed;
  box-shadow: 0 4px 18px 0 rgba(20,49,85,0.08);
  border-radius: 17px;
  padding: 28px 24px 20px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .22s, transform .2s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid > div img {
  width: 42px; height: 42px; margin-bottom: 3px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px 0 rgba(38,167,223,0.13);
  transform: translateY(-4px) scale(1.022);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.service-list > div {
  background: #fff;
  border: 1px solid #e2e6ed;
  box-shadow: 0 4px 18px 0 rgba(20,49,85,0.08);
  border-radius: 17px;
  padding: 28px 24px 20px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .2s;
}
.service-list > div:hover {
  box-shadow: 0 8px 36px 0 rgba(38,167,223,0.13);
  transform: translateY(-4px) scale(1.022);
}
@media (max-width: 900px) {
  .service-list {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .service-list > div {
    min-width: 0;
    max-width: 100%;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(20,49,85,0.08);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #e2e6ed;
  transition: box-shadow .19s, transform .19s;
}
.card:hover { box-shadow: 0 7px 26px 0 rgba(38,167,223,0.10); transform: translateY(-2px) scale(1.012); }

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .service-list, .feature-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(20,49,85,0.11);
  border-radius: 18px;
  margin-bottom: 32px;
  position: relative;
  min-height: 170px;
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.testimonial-slider > div {
  min-width: 260px;
  max-width: 380px;
  scroll-snap-align: start;
  padding: 0 24px 0 0;
  font-size: 1.07rem;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.testimonial-slider strong {
  font-weight: 600;
  margin-top: 10px;
  color: #143155;
}
.testimonial-slider div > div {
  color: #26A7DF; /* star color */
  font-size: 1rem;
  font-family: 'Montserrat', serif;
}
@media (max-width: 900px) {
  .testimonial-card {
    padding: 14px;
    gap: 9px;
    min-height: 100px;
    margin-bottom: 19px;
  }
  .testimonial-slider {
    gap: 10px;
  }
  .testimonial-slider > div {
    min-width: 180px;
    max-width: 95vw;
    padding-right: 0;
  }
}

/* ==============
   PLAN TABLES
   ============== */
.plan-table {
  margin-top: 18px;
  overflow-x: auto;
  max-width: 100vw;
  margin-bottom: 24px;
}
.plan-table table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
  background: #fff;
  border: 1px solid #e2e6ed;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(38,167,223,0.07);
  width: 100%;
}
.plan-table th,
.plan-table td {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid #e2e6ed;
}
.plan-table th {
  background: #F6F8FC;
  color: #143155;
  font-weight: 600;
}
.plan-table tr:last-child td {
  border-bottom: none;
}
.plan-table tbody tr:hover {
  background: #F0F3F7;
}
@media (max-width: 700px) {
  .plan-table table {
    min-width: 420px;
    font-size: 0.95rem;
  }
  .plan-table th,
  .plan-table td {
    padding: 9px 7px;
  }
}

/*******************
  DOMAIN SEARCH & PRICING
 *******************/
.domain-search, .popular-extensions, .pricing-grid, .pricing-table, .benefits {
  margin-bottom: 22px;
}
.domain-search label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  font-family: 'Montserrat', serif;
}
.domain-search input {
  display: block;
  border: 1px solid #bbbfc8;
  background: #f5f6fa;
  border-radius: 8px;
  padding: 11px 15px;
  font-family: 'Roboto', serif;
  font-size: 1.05rem;
  width: 100%;
  max-width: 350px;
  margin-top: 4px;
  margin-bottom: 8px;
  color: #143155;
  outline: none;
}
.domain-search input:focus {
  border-color: #26A7DF;
  background: #fff;
}
.pricing-grid ul,
.pricing-table ul,
.benefits ul, 
.popular-extensions ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}
.pricing-grid ul li,
.pricing-table ul li,
.benefits ul li, 
.popular-extensions ul li {
  background: #fff;
  border-radius: 9px;
  border: 1px solid #e2e6ed;
  box-shadow: 0 2px 8px 0 rgba(20,49,85,0.07);
  padding: 7px 18px;
  font-size: 1.02rem;
  color: #143155;
  font-family: 'Montserrat', serif;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .pricing-grid ul, .pricing-table ul, .benefits ul, .popular-extensions ul {
    flex-direction: column;
    gap: 8px;
  }
  .pricing-grid ul li, .pricing-table ul li, .benefits ul li, .popular-extensions ul li {
    padding: 10px;
    font-size: 0.97rem;
  }
}

/* === Footer === */
footer {
  background: #fff;
  box-shadow: 0 -4px 18px 0 rgba(20,49,85,0.05);
  padding-top: 36px;
  padding-bottom: 24px;
  margin-top: 48px;
  font-size: 1rem;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-top img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-nav a {
  color: #143155;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #26A7DF;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  margin-top: 10px;
  font-size: .97rem;
}
.footer-bottom address {
  font-style: normal;
  color: #143155;
  font-family: 'Roboto', serif;
  font-size: .97rem;
  line-height: 1.5;
}
.footer-bottom a { color: #26A7DF; }
.footer-bottom a:hover, .footer-bottom a:focus { text-decoration: underline; }

@media (max-width: 900px) {
  .footer-top { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 10px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ===========
   FORMS & MAPS
   =========== */
input, select, textarea {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #dae0ee;
  background: #FAFCFE;
  border-radius: 7px;
  margin-bottom: 13px;
}
input:focus, select:focus, textarea:focus {
  border-color: #26A7DF;
  outline: none;
}
.map-location {
  margin-top: 15px;
  margin-bottom: 12px;
}

/* =============
   UTILITY CLASSES
   ============= */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.pb-32 { padding-bottom: 32px; }

.text-section {
  background: #fff;
  border-radius: 17px;
  border: 1px solid #e2e6ed;
  box-shadow: 0 2px 7px 0 rgba(20,49,85,0.06);
  padding: 36px 23px 28px 23px;
  margin-bottom: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 900px) {
  .text-section {
    padding: 18px 7px 18px 7px;
    border-radius: 12px;
  }
}

/* ===============
   BUTTONS & LINKS
   =============== */
button, .btn {
  font-family: 'Montserrat', serif;
  font-size: 1.04rem;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  background: #143155;
  color: #fff;
  transition: background .2s, color .21s, box-shadow .14s;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(20,49,85,0.04);
  margin-right: 7px;
  margin-bottom: 0;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: #26A7DF;
  color: #fff;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================
   COOKIE CONSENT BAR
   ================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1800;
  background: #EFF1F9;
  color: #143155;
  box-shadow: 0 -2px 18px 0 rgba(20,49,85,0.08);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  transition: transform .28s;
  font-size: 1rem;
}
.cookie-banner.is-hidden {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  margin-right: 24px;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-banner .cookie-btn {
  border-radius: 22px;
  background: #143155;
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  padding: 9px 23px;
  margin-right: 9px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .16s, color .12s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #26A7DF;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #FFF;
  color: #143155;
  border: 1px solid #143155;
  margin-left: 6px;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  color: #fff;
  background: #143155;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 10px 14px 10px;
    font-size: 0.96rem;
  }
  .cookie-banner p {
    margin-right: 0;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,49,85,0.18);
  z-index: 1850;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 42px 0 rgba(38,167,223,0.22);
  padding: 36px 30px 22px 30px;
  min-width: 280px;
  max-width: 98vw;
  min-height: 180px;
  color: #143155;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  z-index: 1900;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 5px 0;
  gap: 14px;
}
.cookie-modal .cookie-switch {
  position: relative;
  width: 40px; height: 22px;
  display: inline-block;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #dee3ed;
  border-radius: 22px;
  transition: background 0.16s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  background: #143155;
}
.cookie-modal .cookie-slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(17px);
}
.cookie-modal .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  background: #143155;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 9px 23px;
  transition: background .16s;
  cursor: pointer;
}
.cookie-modal .cookie-btn.secondary {
  background: #fff;
  color: #143155;
  border: 1px solid #143155;
}
.cookie-modal .cookie-btn.secondary:hover,
.cookie-modal .cookie-btn.secondary:focus {
  background: #143155;
  color: #fff;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 15px; right: 13px;
  font-size: 1.4rem;
  color: #143155;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 3px 7px;
  transition: background .13s;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  background: #f5f6fa;
}
@media (max-width: 540px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 20px 7px 14px 7px;
  }
  .cookie-modal .cookie-btns {
    flex-direction: column;
    gap: 7px;
  }
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity:1; transform:none; }
}
.hero, .card, .feature-grid > div, .testimonial-card, .cookie-banner, .cookie-modal {
  animation: fadeInUp .8s cubic-bezier(.71,-0.09,.39,1.11) 0s 1;
}

/* ======== Micro-interactions/Elegance ======== */
.cta-btn,
button, .btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background .18s, color .16s, box-shadow .20s, border-color .17s;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 10px 38px 0 rgba(38,167,223,0.13);
  transform: translateY(-4px) scale(1.022);
  z-index: 2;
}

/* === Hide scrollbars for testimonial slider === */
.testimonial-slider {
  scrollbar-width: thin;
  scrollbar-color: #DEE3ED transparent;
}
.testimonial-slider::-webkit-scrollbar {
  height: 3px;
}
.testimonial-slider::-webkit-scrollbar-thumb {
  background: #DEE3ED;
  border-radius: 2px;
}
.testimonial-slider::-webkit-scrollbar-track { background: transparent; }

/* ===============
  Responsive fixes
 ================ */
@media (max-width: 540px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 15px 3px;
    margin-bottom: 20px;
  }
  main > section:not(:last-child) {
    margin-bottom: 28px;
  }
  .hero {
    min-height: 120px;
    padding-top: 23px;
    padding-bottom: 27px;
    border-radius: 0 0 19px 19px;
  }
  .footer-top img {
    height: 33px;
  }
  .footer-top, .footer-bottom {
    padding-left: 0;
    padding-right: 0;
    gap: 5px;
    font-size: 0.92em;
  }
}

/* ================
   Print-friendly
   ================ */
@media print {
  * { background: none !important; color: #111 !important; }
  a, a:visited { color: #111 !important; text-decoration: underline !important; }
  .hero, header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
