:root {
  --blue: #0FA3D1;
  --blue-dark: #0882AB;
  --blue-light: #E8F7FC;
  --pink: #E8197A;
  --pink-light: #FDE8F2;
  --white: #ffffff;
  --gray-light: #f5f7f9;
  --gray: #6b7280;
  --text: #1a1a2e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── HEADER ── */
header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #12b5e8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(232, 25, 122, 0.15);
  border-radius: 50%;
}

header::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,255,255, 0.06);
  border-radius: 50%;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 24px 44px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.logo-badge .dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

header h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

header h1 span {
  color: var(--pink);
  text-shadow: 0 0 30px rgba(232, 25, 122, 0.4);
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 32px;
}

.header-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.btn-pink {
  background: var(--pink);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 25, 122, 0.4);
}
.btn-pink:hover {
  background: #c91468;
  box-shadow: 0 6px 20px rgba(232, 25, 122, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-white:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-wa:hover {
  background: #1daa52;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.wa-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── WAVE ── */
.wave {
  display: block;
  width: 100%;
  margin-bottom: -2px;
}

/* ── LAYOUT ── */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-title p {
  color: var(--gray);
  font-size: 1rem;
}
.divider {
  width: 50px; height: 4px;
  border-radius: 2px;
  margin: 12px auto 0;
}
.divider-blue { background: var(--blue); }
.divider-pink { background: var(--pink); }

/* ── SERVICES ── */
.services-section { padding: 64px 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

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

.service-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
}

.card-header {
  padding: 28px 28px 20px;
  color: white;
}
.card-header-blue  { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.card-header-green { background: linear-gradient(135deg, #1a7a3e, #27ae60); }

.card-header .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.card-header .subtitle {
  opacity: 0.85;
  font-size: 0.9rem;
}

.card-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: white;
  transition: background 0.2s;
}
.card-phone:hover { background: rgba(255,255,255,0.32); }

.card-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: white;
  transition: background 0.2s;
}
.card-wa:hover { background: #1daa52; }

.card-body {
  background: white;
  padding: 24px 28px;
}

.service-list { list-style: none; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}
.service-list li:last-child { border-bottom: none; }

.check-blue  { color: var(--blue);  font-weight: 700; }
.check-green { color: #27ae60; font-weight: 700; }

/* ── BANNER ── */
.banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #12b5e8 100%);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  color: white;
  margin: 0 0 64px;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(232,25,122,0.15);
  border-radius: 50%;
}
.banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}
.banner h2 .highlight { color: var(--pink); }
.banner p {
  opacity: 0.9;
  font-size: 1.05rem;
  margin-bottom: 24px;
  position: relative;
}

/* ── CONTACT ── */
.contact-section { padding: 0 0 64px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.contact-card-blue { background: var(--blue-light); border: 1.5px solid rgba(15,163,209,0.2); }
.contact-card-pink { background: var(--pink-light); border: 1.5px solid rgba(232,25,122,0.2); }

.avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.avatar-blue  { background: var(--blue); }
.avatar-green { background: #27ae60; }

.contact-card h4 { font-size: 1.15rem; font-weight: 700; }
.contact-card .role { font-size: 0.85rem; color: var(--gray); }

.tel {
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.tel-blue  { color: var(--blue-dark); }
.tel-green { color: #1a7a3e; }
.tel-wa    { color: #1daa52; }
.tel-mail  { color: var(--pink); }
.tel:hover { opacity: 0.8; }

/* ── CONTACT FORM ── */
.form-section { padding: 0 0 64px; }

.form-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Service Picker */
.form-service-picker {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 32px 36px 28px;
}
.picker-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.picker-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 500px) {
  .picker-options { grid-template-columns: 1fr; }
}
.picker-opt { cursor: pointer; }
.picker-opt input { display: none; }
.picker-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  transition: all 0.2s;
  text-align: center;
}
.picker-opt:hover .picker-box {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}
.picker-opt.active .picker-box {
  background: white;
  border-color: white;
}
.picker-opt.active .picker-title { color: var(--blue-dark); }
.picker-opt.active .picker-sub   { color: var(--gray); }
.picker-icon  { font-size: 1.6rem; }
.picker-title { font-size: 0.95rem; font-weight: 700; color: white; }
.picker-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

/* Form Fields */
form {
  padding: 32px 36px 28px;
}
@media (max-width: 640px) {
  form { padding: 24px 20px; }
  .form-service-picker { padding: 24px 20px; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group {
  position: relative;
}
.form-group-full { margin-bottom: 16px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 16px 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--gray-light);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
}
.form-group label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 0.95rem;
  color: var(--gray);
  pointer-events: none;
  transition: all 0.18s ease;
  transform-origin: left top;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-8px) scale(0.78);
  color: var(--blue-dark);
  font-weight: 600;
}

/* Footer & Button */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.form-hint {
  font-size: 0.8rem;
  color: var(--gray);
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232,25,122,0.35);
  transition: all 0.2s;
}
.btn-submit:hover:not(:disabled) {
  background: #c91468;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,25,122,0.45);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit-arrow { font-size: 1.1rem; transition: transform 0.2s; }
.btn-submit:hover:not(:disabled) .btn-submit-arrow { transform: translateX(4px); }
.btn-submit.loading .btn-submit-text::after {
  content: ' …';
  animation: dots 1s infinite;
}
@keyframes dots {
  0%,100% { content: ' …'; }
  33%      { content: ' .'; }
  66%      { content: ' ..'; }
}

/* Messages */
.form-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-msg:not(:empty) { display: block; }
.form-msg-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-msg-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ── USP BAR ── */
.usp-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gray-light);
  border-bottom: 1px solid #e5e7eb;
  max-width: 100%;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.usp-item span { color: var(--blue); font-size: 1rem; }

/* ── ABOUT ── */
.about-section {
  padding: 0 0 64px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-block {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 28px;
}
.about-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-block p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
}

/* ── SERVICE AREA ── */
.area-section {
  padding: 0 0 64px;
}
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.area-tag {
  background: var(--blue-light);
  border: 1px solid rgba(15,163,209,0.25);
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
}
.area-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 32px 24px;
  font-size: 0.85rem;
}
footer strong { color: white; }

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-address { line-height: 1.7; }

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

/* ── LEGAL PAGES ── */
.legal-page {
  min-height: 100vh;
  background: var(--gray-light);
  padding: 40px 24px 64px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
@media (max-width: 640px) {
  .legal-inner { padding: 28px 24px; }
}
.back-link {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.back-link:hover { opacity: 0.75; }
.legal-inner h1 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue-light);
}
.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--blue-dark);
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 8px;
}
.legal-content p {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #374151;
}
.legal-content ul {
  margin: 8px 0 12px 20px;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #374151;
}
.legal-content a { color: var(--blue-dark); }
.legal-content strong { color: var(--text); }
