
  :root {
    --bg: #141414;
    --bg2: #1c1c1c;
    --bg3: #222222;
    --orange: #f97316;
    --orange-dim: #c05a0d;
    --gray: #2e2e2e;
    --gray-light: #555;
    --text: #e8e8e8;
    --text-muted: #999;
    --white: #ffffff;
    --border: #333;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 76px;
    background: rgba(58,56,53,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(249,115,22,0.15);
    transition: all .3s ease;
  }

  nav.scrolled {
    height: 64px;
    background: rgba(48,46,44,0.99);
    border-bottom-color: rgba(249,115,22,0.35);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .logo-icon {
    width: 48px;
    height: 48px;
    position: relative;
    flex-shrink: 0;
  }

  .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo-text span:first-child {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
    color: var(--white);
  }

  .logo-text span:last-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    transition: color .25s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width .25s ease;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--orange);
    color: var(--bg) !important;
    padding: 9px 22px;
    font-weight: 700 !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background .25s, transform .2s !important;
  }

  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--white) !important; transform: translateY(-1px) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: all .3s;
    display: block;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(249,115,22,0.08) 0%, transparent 60%),
      linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #1a1008 100%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  }

  .hero-circuit {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 55%;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='50' cy='50' r='4' fill='%23f97316'/%3E%3Ccircle cx='150' cy='50' r='4' fill='%23f97316'/%3E%3Ccircle cx='250' cy='50' r='4' fill='%23f97316'/%3E%3Ccircle cx='350' cy='150' r='4' fill='%23f97316'/%3E%3Ccircle cx='250' cy='250' r='4' fill='%23f97316'/%3E%3Ccircle cx='150' cy='350' r='4' fill='%23f97316'/%3E%3Cline x1='50' y1='50' x2='150' y2='50' stroke='%23f97316' stroke-width='1.5'/%3E%3Cline x1='150' y1='50' x2='250' y2='50' stroke='%23f97316' stroke-width='1.5'/%3E%3Cline x1='250' y1='50' x2='350' y2='150' stroke='%23f97316' stroke-width='1.5'/%3E%3Cline x1='350' y1='150' x2='250' y2='250' stroke='%23f97316' stroke-width='1.5'/%3E%3Cline x1='250' y1='250' x2='150' y2='350' stroke='%23f97316' stroke-width='1.5'/%3E%3C/svg%3E");
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .6s .2s forwards;
  }

  .hero-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--orange);
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp .7s .35s forwards;
  }

  .hero-title span {
    color: var(--orange);
    display: block;
  }

  .hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp .7s .5s forwards;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s .65s forwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--bg);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 32px;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all .25s;
  }

  .btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all .25s;
  }

  .btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
  }

  .hero-stats {
    position: absolute;
    right: 60px;
    bottom: 80px;
    display: flex;
    gap: 50px;
    opacity: 0;
    animation: fadeUp .7s .8s forwards;
  }

  .stat {
    text-align: center;
    border-left: 2px solid rgba(249,115,22,0.3);
    padding-left: 20px;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--orange);
    line-height: 1;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── SECTION BASE ── */
  section { padding: 100px 60px; }

  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
  }

  .section-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 60px;
  }

  /* ── HIZMETLER ── */
  #hizmetler {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
  }

  #hizmetler::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
  }

  .service-card {
    background: var(--bg3);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform .3s ease;
    border-top: 3px solid transparent;
  }

  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
  }

  .service-card:hover {
    transform: translateY(-4px);
    border-top-color: var(--orange);
  }

  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 52px;
    height: 52px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background .3s;
  }

  .service-card:hover .service-icon {
    background: rgba(249,115,22,0.2);
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .service-num {
    position: absolute;
    top: 28px; right: 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(249,115,22,0.06);
    line-height: 1;
    transition: color .3s;
  }

  .service-card:hover .service-num { color: rgba(249,115,22,0.12); }

  .service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── NEDEN BİZ ── */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-image {
    position: relative;
  }

  .why-image-inner {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg3);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }

  .why-image-inner svg {
    width: 100%;
    height: 100%;
  }

  .why-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 140px;
    height: 140px;
    background: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  }

  .why-badge strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--bg);
    line-height: 1;
  }

  .why-badge span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
    text-align: center;
  }

  .why-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
  }

  .why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--bg2);
    border-left: 3px solid var(--orange);
    transition: background .25s;
  }

  .why-item:hover { background: var(--bg3); }

  .why-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-item-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .why-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .why-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── REFERANSLAR ── */
  #referanslar { background: var(--bg2); }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .project-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg3);
    cursor: pointer;
   
  }

  .project-card-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .project-card:hover .project-card-bg { transform: scale(1.05); }

  .project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transform: translateY(20px);
    opacity: 0.8;
    transition: all .35s;
  }

  .project-card:hover .project-card-overlay {
    transform: translateY(0);
    opacity: 1;
  }

  .project-type {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
  }

  .project-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .project-loc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }

  .project-card.large {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  /* ── HAKKIMIZDA ── */
  #hakkimizda { background: var(--bg); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-text p strong {
    color: var(--text);
    font-weight: 500;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .value-item {
    padding: 16px 20px;
    background: var(--bg2);
    border-top: 2px solid var(--orange);
  }

  .value-item h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .value-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0 !important;
  }

  .about-visual {
    position: relative;
  }

  .about-img-wrap {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
  }

  .about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(249,115,22,0.2);
    z-index: -1;
  }

  /* ── İLETİŞİM ── */
  #iletisim { background: var(--bg2); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
  }

  .contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 24px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .contact-item-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
  }

  .contact-item-text span {
    font-size: 15px;
    color: var(--text);
  }

  /* FORM */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    padding: 14px 18px;
    outline: none;
    transition: border-color .25s;
    resize: vertical;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--orange);
  }

  .form-group select option {
    background: var(--bg);
  }

  .form-group textarea { min-height: 120px; }

  .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange);
    color: var(--bg);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all .25s;
    align-self: flex-start;
  }

  .submit-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
  }

  .submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ── FOOTER ── */
  footer {
    background: #0d0d0d;
    padding: 60px 60px 30px;
    border-top: 1px solid rgba(249,115,22,0.15);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }

  .footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-col ul li a::before {
    content: '›';
    color: var(--orange);
    font-size: 16px;
    line-height: 1;
  }

  .footer-col ul li a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
  }

  .footer-bottom span { color: var(--orange); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── MOBILE NAV ── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 24px 32px;
    z-index: 999;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
  }

  .mobile-menu a:hover { color: var(--orange); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .why-grid, .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .project-card.large { grid-row: span 1; aspect-ratio: 4/3; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-stats { position: relative; right: auto; bottom: auto; margin-top: 60px; justify-content: flex-start; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section, .hero { padding: 80px 24px; }
    footer { padding: 50px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .projects-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .hero-stats { gap: 30px; }
  }

  /* Project placeholder visuals */
  .proj-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.contact-map {
  margin-top: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 4px;
}
