/* ============================
   CSS RESET & NORMALIZE
   ============================ */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #FCFCFE;
  color: #322F32;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  color: #1C2439;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23B468;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
strong {
  font-weight: 700;
}
input, button, textarea, select {
  font-family: inherit;
}

/* ============================
   CSS VARIABLES (COLOR SCHEME)
   ============================ */
:root {
  --primary: #1C2439;
  --secondary: #23B468;
  --accent: #F7F8FA;
  --pastel-blue: #A3D2F2;
  --pastel-mint: #C0F4CA;
  --pastel-lilac: #E3D7F2;
  --pastel-coral: #FFDDD2;
  --pastel-yellow: #FFF8B7;
  --pastel-pink: #F8C7D8;
  --soft-white: #FCFCFE;
  --soft-grey: #E7ECF3;
  --text-darker: #1C2439;
  --text-soft: #60667B;
  --shadow-soft: 0 4px 24px rgba(76, 74, 128, 0.07);
  --shadow-card: 0 2px 24px rgba(28, 36, 57, 0.09);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition: 0.18s cubic-bezier(.52,.06,.48,1);
}

/* ============================
   TYPOGRAPHY
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 2.2rem;
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.65rem;
  line-height: 1.26;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1.4;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.3;
}
p, li, .text-section {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--text-soft);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.text-section {
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  background: var(--pastel-lilac);
  color: var(--primary);
  border-left: 5px solid var(--secondary);
  margin: 0 0 12px 0;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 1.05em;
}

/* Typography scale for responsiveness */
@media (min-width: 600px) {
  h1, .h1 { font-size: 2.9rem; }
  h2, .h2 { font-size: 2.1rem; }
}
@media (min-width: 1020px) {
  h1, .h1 { font-size: 3.3rem; }
  h2, .h2 { font-size: 2.5rem; }
}


/* ============================
   GENERAL LAYOUT CONTAINERS
   ============================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (min-width: 768px) {
  .section {
    padding: 56px 0 56px 0;
  }
}

.card-container, .service-cards, .testimonial-list, .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(76, 74, 128, 0.13);
  transform: translateY(-6px) scale(1.017);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  flex-direction: column;
}
@media (min-width: 900px) {
  .text-image-section {
    flex-direction: row;
  }
}

/* ============================
   HEADER & NAVIGATION
   ============================ */
header {
  background: linear-gradient(90deg, var(--pastel-blue) 0%, var(--soft-white) 88%);
  box-shadow: 0 1px 7px 0 rgba(76, 74, 128, 0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 74px;
}
.logo img {
  height: 48px;
  display: block;
}
.main-nav {
  display: none;
}
.btn.btn-primary {
  background: linear-gradient(90deg, var(--pastel-blue), var(--pastel-mint));
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 13px 30px;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  font-size: 1.07em;
  letter-spacing: 0.10em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  outline: none;
}
.btn {
  background: var(--pastel-mint);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  outline: none;
  font-size: 1em;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(92deg, var(--pastel-mint) 66%, var(--pastel-blue));
  color: var(--primary);
  box-shadow: 0 8px 44px -10px var(--pastel-mint);
  transform: translateY(-2px) scale(1.03);
}
.btn:hover, .btn:focus {
  background: var(--pastel-blue);
  color: var(--primary);
  box-shadow: 0 8px 36px -10px var(--pastel-blue);
  transform: scale(1.025);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  color: var(--primary);
  background: var(--soft-grey);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin-left: 9px;
  transition: background 0.17s, box-shadow 0.16s;
  z-index: 103;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pastel-mint);
  box-shadow: 0 2px 12px var(--pastel-blue);
  outline: none;
}

@media (min-width: 992px) {
  .main-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-right: 18px;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: var(--primary);
    font-weight: 600;
    font-size: 1em;
    transition: color var(--transition);
    padding: 10px 3px;
    border-radius: var(--radius-sm);
  }
  .main-nav a:hover, .main-nav a.active {
    color: var(--secondary);
    text-decoration: underline wavy var(--pastel-blue) 1.6px;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ============================
   MOBILE MENU / SIDEBAR
   ============================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--pastel-lilac) 35%, var(--pastel-blue) 100%);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.5,1.5,.9,1);
  box-shadow: 0 2px 54px -15px var(--pastel-lilac);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  appearance: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  align-self: flex-end;
  margin: 22px 26px 4px 0;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-coral);
  transition: background 0.18s;
  z-index: 4;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-blue);
  color: var(--primary);
  outline: none;
}
.mobile-nav {
  width: 100%;
  margin-top: 40px; /* clear close btn */
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding-left: 35px;
  padding-top: 8px;
}
.mobile-nav a {
  font-size: 1.15em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 10px 20px 10px 14px;
  min-width: 220px;
  margin-bottom: 5px;
  box-shadow: var(--shadow-soft);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-mint);
  color: var(--secondary);
  box-shadow: 0 8px 25px -10px var(--pastel-blue);
}

/* ============================
   HERO SECTIONS
   ============================ */
.hero {
  background: linear-gradient(118deg, var(--pastel-blue) 0%, var(--soft-white) 76%, var(--pastel-lilac) 100%);
  padding: 52px 0 42px 0;
  border-radius: 0 0 42px 42px;
  box-shadow: 0 8px 42px -22px var(--pastel-blue);
  margin-bottom: 38px;
}
@media (min-width: 900px) {
  .hero {
    padding: 72px 0 68px 0;
    border-radius: 0 0 52px 52px;
  }
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
  max-width: 710px;
}
.hero h1, .hero h2 {
  color: var(--primary);
}
.hero p {
  color: var(--text-darker);
  font-size: 1.14rem;
}

/* ============================
   SERVICE CARDS
   ============================ */
.service-cards {
  margin: 0 0 30px 0;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 255px;
  min-width: 240px;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, transform .17s;
}
.service-card:hover {
  box-shadow: 0 8px 36px -8px var(--pastel-blue);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.service-card h3 {
  font-size: 1.13em;
  color: var(--primary);
  margin-bottom: 5px;
}
.service-price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 6px;
  font-size: 1.01em;
}
.service-cta {
  margin-top: 18px;
}

/* ============================
   LISTS, ICON LISTS, FEATURES
   ============================ */
ul, ol {
  margin: 0 0 14px 23px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 13px;
  color: var(--text-soft);
  font-size: 1.01em;
}
ul li strong {
  color: var(--primary);
}
ul li img {
  width: 24px; height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: -4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex: 1 1 260px;
  min-width: 244px;
  background: var(--pastel-pink);
  box-shadow: 0 3px 19px -6px var(--pastel-lilac);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
.testimonial-rating {
  color: #FFCC59;
  font-size: 1.30em;
  letter-spacing: 0.14em;
}
.testimonial-card blockquote {
  color: var(--primary);
  background: transparent;
  border: none;
  font-style: italic;
  font-size: 1.1em;
  margin: 0;
  padding: 0 3px;
}
.testimonial-author {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-darker);
  font-size: 1em;
  font-weight: 500;
  margin-top: 6px;
}

/* Extreme legibility for dark-on-light testimonials */
.testimonial-card,
.testimonial-card blockquote,
.testimonial-author {
  color: var(--text-darker)
}

/* ============================
   FAQ LISTS
   ============================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: var(--pastel-yellow);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px -7px var(--pastel-coral);
  padding: 19px 20px 15px 22px;
  margin-bottom: 20px;
  transition: box-shadow .15s;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 1.09em;
}
.faq-answer {
  color: var(--text-soft);
  font-size: 1em;
}

/* ============================
   CONTACT INFO
   ============================ */
.contact-info-snippet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-snippet a {
  color: var(--secondary);
  font-weight: 600;
  transition: text-decoration 0.12s;
}
.contact-info-snippet a:hover {
  text-decoration: underline;
}
.map-placeholder {
  background: var(--soft-grey);
  color: var(--text-soft);
  border-radius: var(--radius-md);
  padding: 32px 0;
  text-align: center;
  margin-top: 15px;
  font-size: 1.01em;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: linear-gradient(100deg, var(--soft-white) 52%, var(--pastel-blue) 100%);
  box-shadow: 0 -3px 30px -8px var(--pastel-lilac);
  padding: 32px 0 20px 0;
  margin-top: 62px;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 50px;
  margin-bottom: 8px;
  display: block;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1em;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.98em;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ============================
   SPACING (MANDATORY)
   ============================ */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ============================
   COOKIE CONSENT
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--pastel-lilac) 70%, var(--pastel-blue));
  color: var(--primary);
  box-shadow: 0 -4px 22px -8px var(--pastel-blue);
  display: flex;
  flex-direction: column;
  padding: 24px 20px 24px 18px;
  align-items: flex-start;
  z-index: 12000;
  animation: cookieIn 0.7s cubic-bezier(.36,1.27,.27,.93);
}
@keyframes cookieIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  margin-bottom: 12px;
  font-size: 1em;
  color: var(--primary);
}
.cookie-banner__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--pastel-mint);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  margin-right: 6px;
  box-shadow: 0 1px 10px -3px var(--pastel-lilac);
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--pastel-coral);
  color: var(--primary);
}
.cookie-btn.reject:hover {
  background: var(--pastel-pink);
}
.cookie-btn.settings {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--pastel-mint);
}

/* COOKIE MODAL OVERLAY & CONTENT */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: rgba(44, 50, 60, 0.30);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFade .33s cubic-bezier(.52,.06,.48,1);
}
@keyframes cookieFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--soft-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 44px -14px var(--pastel-mint);
  padding: 40px 26px 26px 26px;
  max-width: 98vw;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookieModalIn 0.45s cubic-bezier(.53,1.37,.32,.98);
}
@keyframes cookieModalIn {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--pastel-blue);
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--soft-grey);
}
.cookie-category:last-child {
  border-bottom: 0;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 1em;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--pastel-lilac);
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: none;
  margin-left: 7px;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s cubic-bezier(.52,.06,.48,1);
}
.cookie-toggle:checked::before {
  transform: translateX(14px);
}
.cookie-toggle:disabled {
  opacity: 0.53;
  cursor: not-allowed;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 992px) {
  .footer-row { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .container { padding-left: 11px; padding-right: 11px; }
  .main-nav { display: none !important; }
  .footer-logo img { height: 38px; }
  .testimonial-list { gap: 16px; }
  .service-cards { gap: 17px; }
  .footer-nav {gap: 8px;}  
}
@media (max-width: 600px) {
  .section {padding: 22px 7px; margin-bottom: 40px;}
  .hero {padding: 38px 0 26px 0; margin-bottom: 24px;}
  .footer-row {gap: 13px;}
  .mobile-menu {padding-top: 28px;}
  .cookie-banner {padding: 17px 8px 18px 8px; font-size: 0.97em;}
}
@media (max-width: 480px) {
  .service-card, .testimonial-card { min-width: 96vw; }
  .card-container, .service-cards, .testimonial-list { flex-direction: column; gap: 8px; }
}

/* ============================
   MICRO-INTERACTIONS & EFFECTS
   ============================ */
.card, .service-card, .testimonial-card, .faq-item, .btn, .btn-primary, .cookie-btn {
  transition: box-shadow 0.16s, background 0.15s, color 0.15s, transform 0.15s;
}

a:focus, button:focus, .btn:focus, input:focus, .cookie-btn:focus {
  outline: 2px solid var(--pastel-mint);
  outline-offset: .5px;
}

::-webkit-scrollbar {
  width: 11px;
  background: var(--soft-grey);
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-mint);
  border-radius: 9px;
}

/* ============================
   FORMS, INPUTS (if used)
   ============================ */
input, textarea, select {
  padding: 10px 13px;
  border: 1.5px solid var(--soft-grey);
  border-radius: var(--radius-sm);
  background: var(--soft-white);
  color: var(--primary);
  font-size: 1em;
  transition: border 0.15s;
  width: 100%;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--pastel-blue);
  outline: none;
}

/* ============================
   UTILITY CLASSES
   ============================ */
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.gap-20 { gap: 20px !important; }
.text-center { text-align: center !important; }

/* ============================
   PRINTED BRAND PERSONALITY
   ============================ */
body, html {
  background: linear-gradient(90deg, #FCFCFE 0%, var(--pastel-mint) 170%);
}

/*
 *  END OF CSS
 */
