:root {
  --bg: #07111d;
  --bg-deep: #050c14;
  --bg-soft: #0c1a28;
  --panel: #102131;
  --panel-light: #172d41;
  --text: #f6f8fb;
  --muted: #aebdcc;
  --copper: #f18b38;
  --copper-light: #ffb36e;
  --blue: #36a8ff;
  --blue-light: #7fcaff;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .2);
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--copper-light);
  color: #101010;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section-dark { background: linear-gradient(180deg, #07111d 0%, #0a1723 100%); }
.section-soft { background: linear-gradient(180deg, #0d1c2b 0%, #0b1825 100%); }
.section-accent { background: linear-gradient(120deg, rgba(241, 139, 56, .09), rgba(54, 168, 255, .08)), #091621; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 16, 26, .89);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 78px; display: flex; align-items: center; gap: 25px; }
.brand { flex: 0 0 auto; }
.brand img { width: 230px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; color: #d8e2eb; font-size: 14px; }
.nav-links a { position: relative; padding: 10px 0; }
.nav-links > a:not(.nav-mobile-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--copper);
  transition: right .2s ease;
}
.nav-links > a:hover::after { right: 0; }
.nav-cta { flex: 0 0 auto; }
.nav-mobile-cta { display: none; }
.mobile-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: #fff; transition: .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--copper-light), #da641d); color: #101316; box-shadow: 0 12px 32px rgba(241, 139, 56, .22); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(241, 139, 56, .3); }
.btn-secondary { border-color: rgba(75, 180, 255, .7); background: rgba(54, 168, 255, .08); color: #fff; }
.btn-secondary:hover { background: rgba(54, 168, 255, .17); }
.btn-ghost { border-color: var(--line-strong); background: rgba(255, 255, 255, .035); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .09); }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(127, 202, 255, .75);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: linear-gradient(90deg, var(--copper), transparent); }
.accent { color: var(--copper-light); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow::before { display: none; }
.section h2, .hero h1 {
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.section h2 { margin: 14px 0 18px; font-size: clamp(34px, 4.6vw, 54px); }
.section h3 { line-height: 1.15; }
.section p { color: var(--muted); }

.hero { padding: 86px 0 80px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -250px; top: -260px; border-radius: 50%; background: rgba(54, 168, 255, .12); filter: blur(45px); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; }
.hero h1 { margin: 20px 0 22px; font-size: clamp(48px, 6vw, 76px); }
.lead { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 30px 0 20px; }
.free-call-note { display: flex; align-items: flex-start; gap: 12px; max-width: 720px; margin-top: 8px; padding: 14px 16px; border-left: 3px solid var(--copper); background: rgba(255, 255, 255, .035); color: var(--muted); font-size: 14px; }
.free-call-note strong { color: #fff; white-space: nowrap; }
.proofs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.proof { padding: 14px 14px 10px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.proof strong { display: block; margin-bottom: 4px; color: #fff; font-size: 14px; }

.hero-visual { position: relative; min-height: 530px; }
.visual-glow { position: absolute; inset: 20% 8% 8% 15%; border-radius: 50%; background: rgba(241, 139, 56, .14); filter: blur(45px); }
.browser-card { position: absolute; inset: 20px 12px 60px 0; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 24px; background: linear-gradient(155deg, #162c40, #0a1420); box-shadow: var(--shadow); transform: perspective(1000px) rotateY(-5deg) rotateX(1deg); }
.browser-top { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--line); color: #9fb1c1; font-size: 12px; }
.browser-top i { width: 9px; height: 9px; border-radius: 50%; background: var(--copper); }
.browser-top i:nth-child(2) { background: #ffc46f; }
.browser-top i:nth-child(3) { background: var(--blue); }
.browser-top span { margin-left: 9px; }
.browser-content { padding: 55px 45px; }
.browser-label { display: inline-block; padding: 7px 10px; border-radius: 999px; background: rgba(241, 139, 56, .14); color: var(--copper-light); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.browser-content h2 { max-width: 300px; margin: 20px 0 16px; font-size: 40px; }
.browser-content p { display: none; }
.browser-lines { display: grid; gap: 10px; margin-top: 38px; }
.browser-lines span { height: 9px; border-radius: 999px; background: linear-gradient(90deg, rgba(54, 168, 255, .7), rgba(54, 168, 255, .08)); }
.browser-lines span:nth-child(1) { width: 80%; }
.browser-lines span:nth-child(2) { width: 62%; }
.browser-lines span:nth-child(3) { width: 72%; }
.app-card { position: absolute; right: -8px; bottom: 0; width: 225px; min-height: 365px; padding: 18px; border: 8px solid #1c2d3c; border-radius: 34px; background: linear-gradient(180deg, #f5f9fc, #e7eef4); color: #111a23; box-shadow: 0 30px 70px rgba(0, 0, 0, .45); transform: rotate(3deg); }
.app-card-top { display: flex; justify-content: space-between; font-size: 9px; color: #526273; }
.app-card-top b { font-size: 10px; }
.app-card-title { margin: 35px 0 20px; font-size: 23px; font-weight: 900; line-height: 1.1; }
.app-card-title small { display: block; margin-top: 7px; color: #667787; font-size: 11px; font-weight: 600; }
.app-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.app-card-stats span { padding: 12px; border-radius: 13px; background: #102131; color: #c9d4de; font-size: 9px; }
.app-card-stats b { display: block; color: var(--copper-light); font-size: 22px; }
.app-card-menu { display: grid; gap: 8px; margin-top: 15px; }
.app-card-menu span { padding: 12px; border: 1px solid #d6e0e8; border-radius: 11px; background: #fff; font-size: 10px; font-weight: 800; }

.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.expertise-card { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(24, 48, 68, .95), rgba(8, 19, 30, .96)); box-shadow: 0 20px 60px rgba(0, 0, 0, .18); }
.expertise-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; top: -90px; border-radius: 50%; background: rgba(54, 168, 255, .08); }
.web-expertise::after { background: rgba(241, 139, 56, .12); }
.expertise-number { color: rgba(255, 255, 255, .18); font-size: 42px; font-weight: 900; line-height: 1; }
.expertise-card h3 { margin: 18px 0 12px; font-size: 30px; }
.expertise-card p { margin: 0 0 20px; }
.tag { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; background: rgba(241, 139, 56, .14); color: var(--copper-light); font-size: 11px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.tag-blue { background: rgba(54, 168, 255, .14); color: var(--blue-light); }
.check-list { list-style: none; padding: 0; margin: 22px 0; }
.check-list li { position: relative; padding: 7px 0 7px 25px; color: #dbe5ed; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--copper-light); font-weight: 900; }
.text-link, .project-link { color: var(--copper-light); font-weight: 850; }
.text-link:hover, .project-link:hover { text-decoration: underline; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(150deg, rgba(20, 39, 57, .97), rgba(7, 17, 29, .97)); box-shadow: 0 16px 55px rgba(0, 0, 0, .18); }
.pricing-card { display: flex; flex-direction: column; }
.pricing-card.featured { transform: translateY(-8px); border-color: rgba(241, 139, 56, .65); box-shadow: 0 24px 70px rgba(241, 139, 56, .13); }
.pricing-card h3 { margin: 18px 0 0; font-size: 27px; }
.price { margin: 18px 0 5px; font-size: 44px; font-weight: 900; letter-spacing: -.04em; }
.price small { color: var(--muted); font-size: 14px; font-weight: 600; }
.list { list-style: none; padding: 0; margin: 22px 0 26px; }
.list li { padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); color: #d7e1ea; }
.list li::before { content: "✓"; margin-right: 10px; color: var(--copper-light); font-weight: 900; }
.pricing-card .btn { width: 100%; margin-top: auto; }
.monthly { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 22px; padding: 28px; border: 1px solid rgba(54, 168, 255, .38); border-radius: var(--radius-md); background: linear-gradient(100deg, rgba(54, 168, 255, .09), rgba(241, 139, 56, .08)); }
.monthly h3 { margin: 0 0 5px; font-size: 23px; }
.monthly p { margin: 0; }

.apps-compact { display: grid; grid-template-columns: 1.05fr .95fr; gap: 55px; align-items: center; }
.apps-copy h2 { margin: 15px 0 18px; font-size: clamp(36px, 4.6vw, 56px); }
.apps-copy > p { max-width: 680px; }
.app-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.app-pills span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .035); color: #dbe6ee; font-size: 13px; font-weight: 700; }
.app-benefit-panel { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--line); box-shadow: var(--shadow); }
.app-benefit-panel article { padding: 27px; background: #0a1723; }
.app-benefit-panel span { color: var(--copper-light); font-size: 12px; font-weight: 900; }
.app-benefit-panel h3 { margin: 8px 0; font-size: 22px; }
.app-benefit-panel p { margin: 0; font-size: 14px; }

.projects-section { overflow: hidden; }
.portfolio-label { display: flex; align-items: center; gap: 15px; margin: 12px 0 22px; color: var(--copper-light); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.portfolio-label::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, var(--line-strong), transparent); }
.portfolio-label-apps { margin-top: 70px; scroll-margin-top: 110px; }
.projects-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(150deg, rgba(26, 49, 69, .98), rgba(12, 27, 41, .98)); box-shadow: 0 20px 60px rgba(0, 0, 0, .2); }
.browser-preview { display: block; background: #07111d; border-bottom: 1px solid var(--line); }
.browser-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; color: #9fb0c0; font-size: 12px; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--copper); }
.browser-bar i:nth-child(2) { background: #ffbd63; }
.browser-bar i:nth-child(3) { background: var(--blue); }
.browser-bar strong { margin-left: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-preview img { width: 100%; height: 330px; object-fit: cover; object-position: center; background: #102131; }
.project-body { padding: 26px; }
.project-body h3 { margin: 15px 0 8px; font-size: 28px; }
.project-body p { margin: 0 0 20px; }

.real-app-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items: center; }
.real-app-image { padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #0c1723, #050a10); box-shadow: 0 25px 70px rgba(0, 0, 0, .3); }
.real-app-phones { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: center; }
.real-app-phone { display: block; overflow: hidden; border: 6px solid #1c2a38; border-radius: 26px; background: #05070b; box-shadow: 0 16px 35px rgba(0, 0, 0, .36); transition: transform .2s ease, border-color .2s ease; }
.real-app-phone:hover { transform: translateY(-5px); border-color: rgba(54, 168, 255, .55); }
.real-app-phone img { width: 100%; aspect-ratio: 738 / 1600; object-fit: cover; object-position: top; }
.real-app-copy { display: grid; gap: 13px; }
.real-app-item { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: linear-gradient(150deg, rgba(17, 32, 47, .96), rgba(8, 18, 29, .96)); }
.real-app-item h3 { margin: 0 0 7px; font-size: 22px; }
.real-app-item p { margin: 0; }
.real-app-item strong { color: var(--copper-light); }
.real-app-copy > .btn { justify-self: start; margin-top: 5px; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step { position: relative; padding: 27px 24px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, .035); }
.step::before { content: ""; position: absolute; left: 0; top: 20px; bottom: 20px; width: 2px; background: var(--copper); }
.step span { color: var(--copper-light); font-size: 12px; font-weight: 900; }
.step h3 { margin: 9px 0; font-size: 22px; }
.step p { margin: 0; font-size: 14px; }

.call-section { padding: 64px 0; }
.call-panel { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 36px; overflow: hidden; border: 1px solid rgba(241, 139, 56, .42); border-radius: var(--radius-lg); background: linear-gradient(115deg, rgba(241, 139, 56, .15), rgba(54, 168, 255, .1)); box-shadow: var(--shadow); }
.call-panel::after { content: ""; position: absolute; width: 230px; height: 230px; right: -110px; top: -130px; border-radius: 50%; background: rgba(54, 168, 255, .15); }
.call-badge { display: grid; place-items: center; width: 112px; height: 112px; border-radius: 50%; background: linear-gradient(145deg, var(--copper-light), #d7621b); color: #111; font-weight: 950; text-align: center; box-shadow: 0 18px 45px rgba(241, 139, 56, .24); }
.call-copy h2 { margin: 12px 0 8px; font-size: clamp(31px, 3.6vw, 46px); }
.call-copy p { margin: 0; max-width: 700px; }
.call-actions { position: relative; z-index: 1; display: grid; gap: 10px; }

.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border: 1px solid var(--line); border-radius: 26px; background: #102131; box-shadow: var(--shadow); }
.about-location { position: absolute; right: -14px; bottom: 24px; padding: 12px 16px; border: 1px solid rgba(241, 139, 56, .42); border-radius: 11px; background: rgba(7, 17, 29, .92); color: var(--copper-light); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.about-copy h2 { margin: 15px 0 20px; font-size: clamp(36px, 4.5vw, 55px); }
.about-lead { color: #dde6ed !important; font-size: 19px; }
.about-points { display: grid; gap: 12px; margin: 26px 0 28px; }
.about-points div { padding: 16px 18px; border-left: 2px solid var(--copper); background: rgba(255, 255, 255, .035); }
.about-points strong, .about-points span { display: block; }
.about-points span { margin-top: 3px; color: var(--muted); font-size: 14px; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 55px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .035); }
summary { position: relative; padding: 19px 52px 19px 20px; color: #fff; font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--copper-light); font-size: 24px; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 20px 20px; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 45px; align-items: start; }
.contact-copy h2 { margin: 15px 0 18px; font-size: clamp(38px, 4.6vw, 56px); }
.contact-highlight { margin: 25px 0; padding: 18px; border: 1px solid rgba(241, 139, 56, .35); border-radius: 14px; background: rgba(241, 139, 56, .08); }
.contact-highlight strong, .contact-highlight span { display: block; }
.contact-highlight span { margin-top: 5px; color: var(--muted); font-size: 14px; }
.contact-details { display: grid; gap: 6px; }
.contact-details a { color: var(--copper-light); font-weight: 800; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, .04); box-shadow: 0 22px 65px rgba(0, 0, 0, .2); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: #dce6ee; font-size: 13px; font-weight: 750; }
input, select, textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line-strong); border-radius: 10px; background: #0e2233; color: var(--text); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(54, 168, 255, .12); }
textarea { min-height: 145px; resize: vertical; }
.consent label { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; line-height: 1.45; }
.consent input { width: auto; margin-top: 4px; }
.consent a { color: var(--copper-light); text-decoration: underline; }

.footer { padding: 48px 0 25px; border-top: 1px solid var(--line); background: #050c14; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 45px; }
.footer-logo { width: 220px; margin-bottom: 13px; }
.footer-inner p { margin: 0; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 28px; align-content: start; font-size: 14px; }
.footer-links a:hover { color: var(--copper-light); }
.footer-bottom { margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; }

.notice { padding: 14px; border: 1px solid rgba(241, 139, 56, .35); border-radius: 10px; background: rgba(241, 139, 56, .08); color: #ffd5b1; font-size: 14px; }
.center-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; text-align: center; }
.center-card { max-width: 620px; padding: 45px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.legal { max-width: 920px; padding: 70px 0; }
.legal h1 { font-size: clamp(40px, 6vw, 58px); line-height: 1.05; }
.legal h2 { margin-top: 35px; font-size: 27px; line-height: 1.2; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--copper-light); text-decoration: underline; }

@media (max-width: 1080px) {
  .nav-links { gap: 15px; font-size: 13px; }
  .brand img { width: 205px; }
  .hero-grid { gap: 35px; }
  .app-card { right: 0; }
  .call-panel { grid-template-columns: auto 1fr; }
  .call-actions { grid-column: 2; grid-template-columns: repeat(2, auto); justify-content: start; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .nav-inner { min-height: 72px; }
  .brand img { width: 205px; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; margin-left: auto; }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    z-index: 99;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 16, 26, .98);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px 8px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .nav-mobile-cta { display: inline-flex; justify-content: center; margin-top: 10px; border: 0 !important; border-radius: 10px; background: linear-gradient(135deg, var(--copper-light), #da641d); color: #111; font-weight: 900; }
  .mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid, .expertise-grid, .apps-compact, .real-app-layout, .about-grid, .faq-grid, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .hero-visual { min-height: 500px; max-width: 650px; margin-inline: auto; width: 100%; }
  .expertise-card { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card { max-width: 680px; width: 100%; margin-inline: auto; }
  .projects-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .monthly { align-items: flex-start; flex-direction: column; }
  .call-panel { grid-template-columns: 1fr; text-align: left; }
  .call-badge { width: 96px; height: 96px; }
  .call-actions { grid-column: auto; grid-template-columns: 1fr; justify-content: stretch; }
  .about-photo-wrap { max-width: 560px; }
  .about-location { right: 15px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(var(--container), calc(100% - 26px)); }
  .section { padding: 62px 0; }
  .hero h1 { font-size: 46px; }
  .section h2 { font-size: 37px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .free-call-note { flex-direction: column; gap: 3px; }
  .proofs { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .browser-card { inset: 10px 0 55px; transform: none; }
  .browser-content { padding: 42px 26px; }
  .browser-content h2 { max-width: 150px; font-size: 25px; }
  .browser-content p { display: none; }
  .app-card { right: 8px; width: 195px; min-height: 320px; }
  .expertise-card, .card, .project-body, .form { padding: 22px; }
  .process { grid-template-columns: 1fr; }
  .real-app-image { overflow-x: auto; padding: 16px; }
  .real-app-phones { grid-template-columns: repeat(3, 180px); width: max-content; }
  .real-app-copy > .btn { width: 100%; }
  .browser-preview img { height: 230px; }
  .call-panel { padding: 25px; }
  .about-location { position: static; margin-top: 10px; display: inline-flex; }
  .form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
