:root {
  --blue: #2E7BC4;
  --pink: #E8538A;
  --bg: #ffffff;
  --surface: #F7F9FC;
  --surface2: #EEF2F7;
  --text: #1A3A5C;
  --text-muted: #5A6B7C;
  --border: rgba(46, 123, 196, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}
/*nav*/
nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    backdrop-filter: blur(6px);
}
.nav-logo{
    display:flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-box {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
}

.nav-logo-text span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 3px;
}

.nav-logo-line {
  width: 100%;
  height: 2px;
  background: var(--pink);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--pink); }

.nav-cta {
  background: var(--pink);
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}

.nav-cta:hover { background: #d43d77; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}
/*hero*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  border: 0.5px solid var(--border);
  color: var(--pink);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 28px;
  font-weight: 500;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

h1 span {
  color: var(--blue);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
}

.btn-primary:hover { background: #2468a8; }

.btn-ghost {
  border: 0.5px solid var(--border);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 0.5px solid var(--border);
}

.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-visual {
  background: linear-gradient(135deg, #E6F1FB, #FBEAF0);
  border-radius: 16px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-icon {
  font-size: 80px;
}
/*bento*/
#services {
  padding: 100px 5%;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--pink);
  margin-bottom: 16px;
  font-weight: 500;
}

h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 56px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  transition: all 0.3s;
}

.bento-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.bento-large {
  grid-row: span 2;
  justify-content: space-between;
}

.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.bento-blue {
  background: var(--blue);
  border-color: var(--blue);
}

.bento-blue h3, .bento-blue p {
  color: white;
}

.bento-pink {
  background: #FBEAF0;
  border-color: #FBEAF0;
}

.bento-pink h3 {
  color: #993556;
}

.bento-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.bento-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  color: #B5D4F4
}
/*pricing*/
#pricing{
  padding: 100px 5%;
  border-top: 0.5px solid var(--border);
}
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card{
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  display:flex;
  flex-direction: column;
}
.pricing-featured{
  border-color: var(--pink);
  position: relative;
  background: var(--bg);
}
.pricing-badge{
  position: absolute;
  top: -14px;
  left:50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 700px;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-name{
  font-size:13px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom:20px
}
.pricing-price{
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-period{
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.pricing-features{
  list-style: none;
  margin-bottom: 36px;
  flex: 1
}
.pricing-features li{
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
}
.pricing-features li:last-child{
  border-bottom:none;
}
.pricing-card .btn-primary,
.pricing-card .btn-ghost{
  text-align:center;
  display: block;
}
/*reviews*/
#reviews {
  padding: 100px 5%;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.review-stars {
  color: var(--pink);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: #E6F1FB;
  border: 0.5px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
}

.review-name {
  font-size: 14px;
  font-weight: 500;
}

.review-location {
  font-size: 12px;
  color: var(--text-muted);
}
/*contact*/
#contact {
  padding: 100px 5%;
  border-top: 0.5px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
}

.contact-item:first-child {
  border-top: 0.5px solid var(--border);
}

.contact-icon {
  font-size: 24px;
  width: 48px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-value:hover { color: var(--pink); }

.contact-form-wrap {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-top: 0px;
  padding-top: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #A8B5C2; }

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--pink);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: #d43d77; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0 16px;
}

.form-success-icon {
  width: 52px;
  height: 52px;
  border: 0.5px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--pink);
}

.form-success h3 {
  color: var(--pink);
  font-size: 20px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 14px;
}
/*footer*/
footer {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  padding: 60px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 280px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--pink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 0.5px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 1800px) {
  .hero-grid, .footer-grid, .footer-bottom {
    max-width: 1600px;
  }
  h1 { font-size: 72px; }
}