/* ==== CSS RESET & BASE TYPOGRAPHY ==== */
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,
b, 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 {
  line-height: 1.3;
  scroll-behavior: smooth;
}
body {
  background: #F4F7FB;
  color: #232b39;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #4191C6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #196eaa;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}

/* ==== BRAND FONTS ==== */
h1, .hero h1, .thankyou-section h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #1A222E;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h2, .section h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #4191C6;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1A222E;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #232b39;
  margin-bottom: 10px;
}
p, li, td, th, dd {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #232b39;
}

/* ==== LAYOUT CONTAINERS & FLEXBOX ==== */
.container {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 1024px) {
  .content-wrapper {
    gap: 40px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 38px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(65,145,198,0.16);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(26,34,46,0.18),0 2px 10px 0 rgba(65,145,198,0.11);
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 16px #bdd8ee38;
  background: #fff;
  color: #1A222E;
  min-width: 260px;
  max-width: 450px;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HERO SECTION + VISUALS ==== */
.hero {
  background: linear-gradient(115deg, #f4f7fb 70%, #4191c618 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 32px #4191C60c;
  margin-bottom: 48px;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  color: #1A222E;
  margin-bottom: 18px;
}
.hero p {
  margin-bottom: 22px;
  font-size: 1.13rem;
  color: #232b39;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.hero .btn-primary {
  font-size: 1.13rem;
  padding: 15px 32px;
  border-radius: 32px;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 16px 16px;
    margin-bottom: 28px;
    padding-top: 24px;
  }
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 14px #1a222e13;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo img {
  max-height: 46px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #1A222E;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.16s, color 0.14s;
}
nav a:focus, nav a:hover {
  background: #4191C6;
  color: #fff;
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #4191C6;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 1px 14px #4191c628;
  transition: background 0.18s, box-shadow 0.16s, transform 0.13s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.04em;
  margin-left: 16px;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #1A222E;
  color: #F4F7FB;
  box-shadow: 0 4px 22px #4191c62a;
  transform: translateY(-3px) scale(1.04) rotate(-1.5deg);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #4191C6;
  cursor: pointer;
  z-index: 99;
  margin-left: 16px;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #1A222Eea;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 56px;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.6,.04,.38,1.1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 130;
  transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ff8b6a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.19s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4191C6;
  color: #F4F7FB;
}

@media (max-width: 991px) {
  nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== FEATURES / CARDS ==== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 12px;
}
.feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px #4191c612;
  padding: 26px 24px 18px 24px;
  flex: 1 1 290px;
  min-width: 270px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.17s;
  border-left: 6px solid #4191C6;
  overflow: hidden;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 28px #4191C62e;
  transform: translateY(-5px) scale(1.025) rotate(-2.5deg);
}
@media (max-width: 600px) {
  .features-grid { gap: 12px; }
  .feature { min-width: 98%; max-width: 100%; }
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  width: 100%;
  border-spacing: 0;
  margin-top: 10px;
  margin-bottom: 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 12px #4191C618;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 8px;
  border-bottom: 1px solid #f2f4f8;
  text-align: left;
  font-size: 1.07rem;
  color: #1A222E;
}
.pricing-table th {
  background: #E3F0FF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #4191C6;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { padding: 9px 5px; font-size: 0.99rem; }
}

/* ==== SERVICE LIST ==== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 12px;
}
.service {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px 18px 24px;
  box-shadow: 0 2px 12px #4191C610;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid #1A222E;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.service:hover, .service:focus-within {
  box-shadow: 0 8px 26px #1A222E10;
  border-left: 5px solid #4191C6;
}
.service .price {
  background: #E3F0FF;
  color: #196eaa;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 10px;
}

/* ==== TIMELINE / FAQ ==== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: step;
}
.process-steps li {
  position: relative;
  padding-left: 38px;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  background: #4191C6;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  text-align: center;
  line-height: 27px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px #4191C61a;
}
.timeline ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 18px 0 10px 0;
  padding-left: 0;
  list-style: none;
  align-items: center;
}
.timeline li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px #4191C610;
  padding: 8px 22px;
  color: #1A222E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  position: relative;
}
.faq {
  background: #E3F0FF;
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
  box-shadow: 0 1px 10px #bdd8ee21;
}
.faq h3 {
  color: #4191C6;
}
.faq dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1A222E;
  margin-top: 16px;
}
.faq dd {
  margin-bottom: 10px;
  margin-left: 0;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  color: #1A222E;
  font-size: 1.11rem;
  line-height: 1.62;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #4191C6;
  font-weight: 700;
  font-size: 1.02rem;
}

@media (max-width: 900px) {
  .testimonials { flex-direction: column; gap: 18px; }
  .testimonial-card { max-width: 90vw; min-width: 0; }
}

/* ==== FOOTER ==== */
footer {
  background: #232b39;
  color: #fff;
  width: 100%;
  border-radius: 45px 45px 0 0;
  box-shadow: 0 -2px 20px #232b390f;
  padding: 44px 0 18px 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  border-bottom: 1px solid #4191C6;
  padding-bottom: 20px;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-top nav a {
  color: #F4F7FB;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  border-radius: 6px;
  padding: 6px 8px;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  color: #ff8b6a;
  background: #fff1ed;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
}
.brand-info span {
  display: block;
  font-size: 0.96rem;
  color: #E3F0FF;
  margin-bottom: 3px;
}
.legal-disclaimer {
  font-size: 0.91rem;
  color: #bdd8ee;
}
.social-links {
  display: flex;
  gap: 12px;
}
@media (max-width: 800px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==== THANK YOU PAGE ==== */
.thankyou-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px #4191C616;
  padding: 32px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.next-steps {
  background: #E3F0FF;
  border-radius: 14px;
  padding: 18px;
  font-size: 1.05rem;
}

/* ==== MAP PLACEHOLDER ==== */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3f0ff55;
  border-radius: 14px;
  min-height: 92px;
  margin-top: 16px;
}
.map-placeholder p {
  color: #4191C6;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ==== MODALS & BANNERS ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1A222E;
  box-shadow: 0 -4px 24px #4191C611;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 1400;
  padding: 22px 18px;
  font-size: 1.08rem;
  animation: slideup-cookie 0.52s cubic-bezier(.5,1.3,.58,1.01);
}
@keyframes slideup-cookie {
  from { transform: translateY(100%); opacity: 0; } 
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  background: #4191C6;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  margin-left: 12px;
  margin-bottom: 4px;
  cursor: pointer;
  box-shadow: 0 1px 10px #4191C612;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s;
}
.cookie-banner .cookie-btn.accept {
  background: #4191C6;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #1a222e;
  color: #e3f0ff;
}
.cookie-banner .cookie-btn.reject {
  background: #ffd8b5;
  color: #1a222e;
}
.cookie-banner .cookie-btn.reject:hover,.cookie-banner .cookie-btn.reject:focus {
  background: #ff8b6a;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #E3F0FF;
  color: #4191C6;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #4191C6;
  color: #fff;
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1450;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 440px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 48px #232b3931, 0 1.5px 12px #4191C629;
  transform: translate(-50%, -50%) scale(1.06);
  animation: slidein-cookie-modal 0.38s cubic-bezier(.5,1.3,.58,1.01);
  padding: 32px 18px 28px 18px;
}
.cookie-modal.open {
  display: block;
}
@keyframes slidein-cookie-modal {
  from { opacity: 0; transform: translate(-50%, 24%) scale(0.98); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}
.cookie-modal h2 {
  color: #4191C6;
  font-size: 1.23rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.cookie-modal .cookie-category {
  background: #E3F0FF;
  border-radius: 13px;
  padding: 13px 13px 13px 21px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal .cookie-category span {
  font-weight: 700;
  color: #1A222E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-toggle {
  width: 42px; height: 24px;
  background: #4191C6;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #4191C618;
  transition: left 0.18s;
}
.cookie-toggle input:checked + .slider {
  background: #4191C6;
}
.cookie-toggle input:checked + .slider::before {
  left: 21px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 10px 22px;
  border-radius: 18px;
  border: none;
  font-weight: 700;
}

/* ==== BUTTONS & INTERACTIONS ==== */
button, .btn-primary, .cookie-btn {
  outline: none;
  box-shadow: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.13s;
}
button:focus-visible, .btn-primary:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #4191C6;
  outline-offset: 2px;
}

/* ==== ANIMATIONS ==== */
.card, .feature, .testimonial-card, .service {
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.15s;
}
details[open] summary ~ *{
  animation: sweepDown 0.55s cubic-bezier(.2,1.3,.45,1.01) both;
}
@keyframes sweepDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== SPACING UTILITY CLASSES ==== */
.mt-20 {margin-top: 20px !important;}
.mb-20 {margin-bottom: 20px !important;}
.mt-40 {margin-top: 40px !important;}
.mb-40 {margin-bottom: 40px !important;}
.gap-20 {gap: 20px !important;}
.gap-32 {gap: 32px !important;}

/* ==== RESPONSIVE ADJUSTMENTS ==== */
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 1.46rem; }
  h2 { font-size: 1.18rem; }
  .hero { margin-bottom: 22px; }
  .features-grid, .services-list, .testimonials, .content-grid, .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .card, .feature, .service, .testimonial-card, .thankyou-section { padding: 18px 12px; border-radius: 16px; }
  .section { margin-bottom: 32px; padding: 22px 5px; }
}

/* ==== ARTISTIC/CREATIVE STYLE EXTRAS ==== */
.text-section {
  background: #e3f0ff59;
  border-radius: 13px;
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px #bdd8ee24;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1A222E;
}
.text-section ul {
  margin-bottom: 0;
}
.text-section li::marker {
  color: #4191C6;
}
h2::after, h3::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin-top: 6px;
  background-image: linear-gradient(to right, #4191C6 60%, #FFD8B5 100%);
}

/* --- Accent artistic shapes --- */
.hero:before, .feature:before {
  content: '';
  display: block;
  position: absolute;
  left: -28px;
  top: -18px;
  width: 100px;
  height: 100px;
  background: rgba(65,145,198,0.08);
  border-radius: 50% 30% 25% 48% / 35% 10% 80% 45%;
  z-index: 0;
  pointer-events: none;
}
.feature:before {
  left: unset; right: -30px; top: -16px;
  width: 48px; height: 48px;
  background: #ffd8b522;
}
@media (max-width: 900px) {
  .hero:before, .feature:before { display: none; }
}

/* ==== MISC ==== */
::-webkit-scrollbar { width: 11px; background: #e3f0ff; }
::-webkit-scrollbar-thumb { background: #4191C629; border-radius: 9px; }

/* Remove number input spinners on Chrome */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
