*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #FAFAF7;
    --bg2: #F2F1EB;
    --bg3: #FFFFFF;
    --text: #1A1A18;
    --text2: #5A5A55;
    --text3: #8A8A84;
    --accent: #E8622A;
    --accent2: #F5A05A;
    --accent-light: #FEF0E8;
    --teal: #1D9E75;
    --teal-light: #E1F5EE;
    --border: rgba(26,26,24,0.10);
    --border2: rgba(26,26,24,0.06);
    --radius: 16px;
    --radius-sm: 10px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.2;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    background: rgba(250,250,247,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border2);
  }
.__indexx0 .main-content nav, .__indexx0 nav {
position:static;
}

  .nav-brand {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-brand span {
    color: var(--accent);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
  }

  .nav-cta:hover { background: #d0521f; transform: translateY(-1px); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-links a {
    font-size: 14px;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

@media (max-width: 768px) {
    .nav-links { display: none; }
}

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(232,98,42,0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
  }

  .hero-blob2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(29,158,117,0.08) 0%, transparent 70%);
    bottom: 0;
    left: -50px;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.9rem;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }

  .hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.25rem;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
  }

  .hero-desc {
    font-size: 1.05rem;
    color: var(--text2);
    margin-bottom: 2rem;
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.75rem;
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(232,98,42,0.25);
  }

  .btn-primary:hover {
    background: #d0521f;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,98,42,0.32);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.75rem;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--text);
    background: var(--bg2);
  }

  .hero-media {
    position: relative;
  }

  .video-frame {
    background: var(--text);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
    box-shadow: 0 24px 64px rgba(26,26,24,0.18);
  }

  .video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,26,24,0.3);
    cursor: pointer;
    transition: background 0.2s;
  }

  .video-overlay:hover { background: rgba(26,26,24,0.15); }

  .play-btn {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s;
  }

  .play-btn svg { margin-left: 3px; }

  .video-overlay:hover .play-btn { transform: scale(1.08); }

  .hero-stat-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
  }

  .hero-stat {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    flex: 1;
    text-align: center;
  }

  .hero-stat strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
  }

  .hero-stat span {
    font-size: 12px;
    color: var(--text3);
  }

  /* SCROLL SHOWCASE */
  .showcase {
    padding: 5rem 2rem;
    background: var(--text);
    position: relative;
    overflow: hidden;
  }

  .showcase-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .showcase-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: background 0.3s, transform 0.3s;
  }

  .showcase-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-4px);
  }

  .sc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 20px;
  }

  .sc-icon.orange { background: rgba(232,98,42,0.2); }
  .sc-icon.teal { background: rgba(29,158,117,0.2); }
  .sc-icon.blue { background: rgba(55,138,221,0.2); }
  .sc-icon.pink { background: rgba(212,83,126,0.2); }

  .showcase-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
  }

  .showcase-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  /* STEPS */
  .steps {
    padding: 6rem 2rem;
    background: var(--bg);
  }

  .section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
  }

  .section-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
  }

  .section-header p {
    color: var(--text2);
    font-size: 1rem;
  }

  .steps-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .steps-list::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--teal));
    opacity: 0.2;
  }

  .step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
  }

  .step-item.visible { opacity: 1; transform: translateY(0); }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg3);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
  }

  .step-content p {
    color: var(--text2);
    font-size: 0.95rem;
  }

  .step-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
  }

  .step-content a:hover { text-decoration: underline; }

  /* PRICING */
  .pricing {
    padding: 6rem 2rem;
    background: var(--bg2);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .price-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,26,24,0.08);
  }

  .price-card.featured {
    background: var(--text);
    border-color: var(--text);
    color: #fff;
  }

  .price-type {
    font-size: 13px;
    font-weight: 500;
    color: var(--text3);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .price-card.featured .price-type { color: rgba(255,255,255,0.5); }

  .price-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
  }

  .price-card.featured h3 { color: #fff; }

  .price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 1rem 0;
  }

  .price-amount strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
  }

  .price-card.featured .price-amount strong { color: #fff; }

  .price-amount span {
    font-size: 14px;
    color: var(--text3);
  }

  .price-card.featured .price-amount span { color: rgba(255,255,255,0.5); }

  .price-desc {
    font-size: 0.9rem;
    color: var(--text2);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
  }

  .price-card.featured .price-desc { color: rgba(255,255,255,0.65); }

  .price-features {
    list-style: none;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text2);
  }

  .price-card.featured .price-features li { color: rgba(255,255,255,0.75); }

  .price-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal-light);
    flex-shrink: 0;
    margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231D9E75' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E");
  }

  .price-card.featured .price-features li::before {
    background-color: rgba(29,158,117,0.25);
  }

  .price-btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }

  .price-btn.outline {
    border: 1.5px solid var(--border);
    color: var(--text);
  }

  .price-btn.outline:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .price-btn.filled {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,98,42,0.3);
  }

  .price-btn.filled:hover {
    background: #d0521f;
  }

  .price-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 13px;
    color: var(--text3);
  }

  .price-note a { color: var(--accent); text-decoration: none; }
  .price-note a:hover { text-decoration: underline; }

  /* SUPPORT */
  .support {
    padding: 6rem 2rem;
    background: var(--bg);
  }

  .support-inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .support-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .support-text p {
    color: var(--text2);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  .support-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-size: 13px;
    color: var(--text2);
  }

  .support-note::before {
    content: 'ℹ';
    width: 20px;
    height: 20px;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .support-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .support-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .support-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .support-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .support-card p {
    font-size: 13px;
    color: var(--text3);
  }
  
  .support-experience {
    font-size: 0.95rem;
    color: var(--text2);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

  /* CTA FINAL */
  .cta-final {
    padding: 6rem 2rem;
    background: var(--accent);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .cta-final h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
  }

  .cta-final p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
  }

  .cta-final .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2rem;
    background: #fff;
    color: var(--accent);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
  }

  .cta-final .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  }

  /* FOOTER */
  footer {
    background: var(--text);
    padding: 2rem;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
  footer a:hover { color: #fff; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-media { order: -1; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .support-inner { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    nav { padding: 0.85rem 1.25rem; }
    .hero { padding: 6rem 1.25rem 3rem; }
    .showcase-grid { grid-template-columns: 1fr; }
    .hero-stat-row { gap: 0.75rem; }
    .steps, .pricing, .support, .cta-final { padding: 4rem 1.25rem; }
  }

  /* ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }


.jodit-wysiwyg .fade-up {
    opacity: 1; transform: translateY(0);
}
.jodit-wysiwyg .step-item { 
    opacity: 1; transform: translateY(0);
}




.page-content { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }

.intro-block { margin-bottom: 3rem; }
.intro-lead { font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; line-height: 1.5; }
.intro-sub { color: var(--text2); margin-bottom: 2rem; }

.quick-steps { display: flex; flex-direction: column; gap: 1rem; }
.qs-item { display: flex; gap: 1rem; align-items: flex-start; }
.qs-num { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-light); color: var(--accent); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.qs-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.qs-item p { font-size: 14px; color: var(--text2); margin: 0; }

.we-handle { background: var(--text); border-radius: 16px; padding: 2.5rem; margin: 3rem 0; }
.we-handle-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.we-handle h2 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.we-handle p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0; }
.wh-btn { display: inline-flex; white-space: nowrap; padding: 0.8rem 1.5rem; background: var(--accent); color: #fff; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s; flex-shrink: 0; }
.wh-btn:hover { background: #d0521f; }

.diy-divider { margin: 3rem 0; }
.diy-divider-inner { display: flex; align-items: center; gap: 1rem; }
.diy-line { flex: 1; height: 1px; background: var(--border); }
.diy-divider span { font-size: 13px; color: var(--text3); white-space: nowrap; }

.detail-block { margin-bottom: 3.5rem; }
.detail-block h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.detail-block h3 { font-size: 1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; color: var(--text); }
.detail-block p { color: var(--text2); font-size: 0.95rem; margin-bottom: 0.75rem; }
.detail-block code { background: var(--bg2); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.875rem; color: var(--accent); }

.detail-list { padding-left: 1.25rem; color: var(--text2); font-size: 0.95rem; display: flex; flex-direction: column; gap: 0.6rem; }
.detail-list li { line-height: 1.6; }

.detail-note { background: var(--bg2); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin-top: 1.25rem; font-size: 0.9rem; color: var(--text2); }
.detail-note strong { color: var(--text); display: block; margin-bottom: 0.4rem; }
.detail-note ul { padding-left: 1.1rem; margin-top: 0.4rem; display: flex; flex-direction: column; gap: 0.3rem; }
.detail-note a { color: var(--accent); text-decoration: none; }
.detail-note a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .page-content { padding: 2.5rem 1.25rem; }
  .we-handle-inner { flex-direction: column; }
  .diy-divider span { white-space: normal; text-align: center; }
}

.dns-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
.dns-table th { text-align: left; padding: 0.75rem 1rem; background: var(--bg2); color: var(--text); font-weight: 600; border-bottom: 2px solid var(--border); }
.dns-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text2); }
.dns-table tr:last-child td { border-bottom: none; }
.dns-table code { background: var(--accent-light); color: var(--accent); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.875rem; }


.contact-page { max-width: 860px; margin: 0 auto; padding: 4rem 2rem; }

.contact-header { margin-bottom: 3rem; }
.contact-header h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.contact-header p { font-size: 1rem; color: var(--text2); }

.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-info-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.contact-info-card h4 { font-size: 13px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.contact-info-card a { font-size: 15px; font-weight: 500; color: var(--accent); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
.contact-info-card p { font-size: 14px; color: var(--text2); margin: 0; }

.contact-form-wrap { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }

.cf-group { margin-bottom: 1rem; }
.cf-input { width: 100%; padding: 0.75rem 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s; }
.cf-input:focus { border-color: var(--accent); }
.cf-input::placeholder { color: var(--text3); }
textarea.cf-input { resize: vertical; min-height: 120px; }

.cf-btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.85rem 1.75rem; background: var(--accent); color: #fff; border: none; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.cf-btn:hover { background: #d0521f; transform: translateY(-1px); }

@media (max-width: 700px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-page { padding: 2.5rem 1.25rem; }
}