/* ============================================
   GFXSTUDIO - Custom Pages Stylesheet (Cleaned)
   Version: 3.2.1 (No Duplicate Classes)
   ============================================ */

 
/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-color: #a3ce25;
    --secondary-color: #83a819;
    --font-size: 20px;
    --body-color: #20212d;
    --text-color: #0f172a;
    --muted-text: #64748b;
    --border-color: #ccc;
    --white: #ffffff;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Barlow", sans-serif;
    font-size: var(--font-size);
    color: var(--body-color);
    line-height: 1.6;
}

/* ============================================
   LAYOUT - Container, Row, Grid
   ============================================ */
.section {
    padding: 40px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

/* 12 Column Grid System */
.col-1 { flex: 0 0 8.333%; max-width: 8.333%; }
.col-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5 { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Modern Grid Systems */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.text-center { text-align: center; }

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-orange {
    background: var(--primary-color);
    color: var(--body-color);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-dark {
    border: 2px solid var(--body-color);
    color: var(--body-color);
}

/* Accessibility */
.skip-link {
    display: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo img {
    padding: 15px;
    max-width: 220px;
    width: 220px;
    background-size: 100%;
    height: auto;
}

.header-logo .logo-gfx {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -1px;
}

.header-logo .logo-gfx span {
    color: var(--primary-color);
}

.header-logo .logo-studio {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    margin-top: 1px;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.header-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
    padding: 26px 20px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.header-nav a:hover {
    color: var(--primary-color);
}

.header-nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.header-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.header-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.header-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.header-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--body-color);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.header-drawer.open {
    opacity: 1;
    pointer-events: all;
}

.header-drawer a {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.header-drawer a:hover {
    color: var(--primary-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: url('../images/hero-scaled-1-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-attachment: fixed;
}

.hero-text {
    max-width: 920px;
    margin: auto;
}

.hero-badge {
    color: #888;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.05;
    letter-spacing: -3px;
}

.hero-title span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
}

.hero-desc {
    color: #aaa;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients {
    border-bottom: 1px solid #eee;
}

.client-box {
    text-align: center;
    font-weight: 600;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about h2 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 72px;
}

.section-heading h2 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 72px;
}

.section-heading h2 span {
    color: var(--primary-color);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-heading {
    text-align: center;
    margin-bottom: 48px;
}

.process-heading .process-badge {
    color: #888;
    margin-bottom: 8px;
}

.process-heading h2 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 72px;
}

.process-heading h2 span {
    color: var(--primary-color);
}

.process .icon img {
    width: 100px;
    height: 100px;
}

.step {
    padding: 16px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--body-color);
}

.step p {
    color: var(--body-color);
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services h2 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 72px;
}

.services .card {
    background: var(--body-color);
    color: #fff;
}

/* Service Detail Sections */
.service-section {
    padding: 2.22rem 0;
}

.service-number {
    font-size: 2.22rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.11rem;
}

.service-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 20px;
    line-height: 1.78;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    line-height: 1.78;
    padding-left: 1.67rem;
    position: relative;
    margin-bottom: 0.28rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.67rem;
    width: 0.56rem;
    height: 0.56rem;
    background-color: #1a1a1a;
    border-radius: 50%;
}

/* ============================================
   EXCEL / PORTFOLIO SLIDER
   ============================================ */
.excel-heading {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 72px;
    color: var(--body-color);
    font-weight: 600;
}

.excel-slider-outer {
    position: relative;
    overflow: hidden;
}

.excel-slider-track {
    display: flex;
    gap: 16px;
    padding: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
}

.excel-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 calc((100% - 48px * 2 - 16px * 2) / 3);
    min-width: 260px;
}

.excel-card {
    border-radius: 10px;
    padding: 28px 24px;
    color: #fff;
    flex: 1;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.excel-card h3 {
    font-weight: 600;
    line-height: 1.3;
}

.excel-card p {
    font-size: 20px;
    line-height: 27px;
    opacity: 0.92;
}

/* Excel Card Color Variants */
.excel-card-purple { background: linear-gradient(160deg, #7B4FD4 0%, #3a1a6e 100%); }
.excel-card-blue-purple { background: linear-gradient(135deg, #6B5CE7 0%, #4A90D9 100%); }
.excel-card-pink { background: linear-gradient(135deg, #C0407A 0%, #9B3FA8 100%); }
.excel-card-blue { background: linear-gradient(160deg, #3B6FD4 0%, #1a3a8a 100%); }
.excel-card-indigo { background: linear-gradient(160deg, #5a3fbf 0%, #2d1e7a 100%); }
.excel-card-rose { background: linear-gradient(135deg, #b03080 0%, #7a1a5a 100%); }
.excel-card-ocean { background: linear-gradient(135deg, #2a7abf 0%, #1a3a6a 100%); }

.excel-col-tall .excel-card {
    flex: 1;
}

/* Excel Navigation */
.excel-scrollbar-track {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 28px 48px 0;
    gap: 8px;
}

.excel-scrollbar-bg {
    width: 120px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 99px;
    overflow: hidden;
}

.excel-scrollbar-thumb {
    height: 100%;
    width: 40%;
    background: #888;
    border-radius: 99px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}

.excel-nav-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 48px 0;
}

.excel-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.8px solid #ccc;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.excel-arrow-btn:hover {
    background: #f0f0f0;
    border-color: #999;
}

.excel-arrow-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.excel-arrow-btn svg {
    width: 16px;
    height: 16px;
    stroke: #333;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.excel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.excel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.2s;
    cursor: pointer;
}

.excel-dot.active {
    background: var(--body-color);
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */
/* Trust Bar */
.trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.trust-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 15px;
}

.metric-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 600;
}

/* Problem/Solution Stats */
.ps {
    padding: 80px 24px;
    background: #fff;
    overflow: hidden;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.ps-accent-line {
    height: 3px;
    width: 48px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.ps-tag {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ps-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ps-sub {
    font-size: 18px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2px;
    max-width: 900px;
    margin: 0 auto 64px;
    border: 1px solid #cccccc;
    border-radius: 16px;
    overflow: hidden;
}

.ps-stat {
    padding: 40px 24px;
    background: #fff;
    text-align: center;
    position: relative;
    border-right: 1px solid #cccccc;
}

.ps-stat:last-child {
    border-right: none;
}

.ps-stat-bar {
    height: 3px;
    width: 36px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.ps-stat-num {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.ps-stat-accent {
    color: var(--secondary-color);
}

.ps-stat-label {
    font-size: 18px;
    color: var(--muted-text);
    letter-spacing: 0.04em;
}

.ps-trust {
    max-width: 900px;
    margin: 0 auto;
}

.ps-trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.ps-trust-line {
    flex: 1;
    height: 1px;
    background: #cccccc;
}

.ps-trust-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    white-space: nowrap;
}

.ps-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ps-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border: 1px solid #cccccc;
    border-radius: 12px;
    background: #fafafa;
    transition: 0.3s ease;
}

.ps-logo:hover {
    transform: translateY(-3px);
}

.ps-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-logo-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.ps-logo-meta {
    font-size: 16px;
    color: var(--muted-text);
}

/* ============================================
   BEFORE/AFTER SECTION
   ============================================ */
.bw {
    padding: 2.5rem 0;
    font-family: var(--font-sans);
    background: transparent;
}

.bh {
    text-align: center;
    margin-bottom: 2rem;
}

.bh p {
    font-size: 18px;
    color: #444;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.bgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.bgrid .card {
    background: var(--primary-color);
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento-heading {
    text-align: center;
    margin-bottom: 40px;
}

.bento-heading h2 {
    font-size: 60px;
    font-weight: 600;
    color: var(--body-color);
    line-height: 1.3;
}

.bento-grid {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.bento-left {
    flex: 1;
    background: var(--primary-color);
    border-radius: 16px;
    min-height: 420px;
}

.bento-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-right-top {
    flex: 1;
    background: var(--primary-color);
    border-radius: 16px;
    min-height: 196px;
}

.bento-right-bottom {
    flex: 1;
    background: var(--primary-color);
    border-radius: 16px;
    min-height: 196px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.card-highlight {
    border-top: 4px solid var(--primary-color);
}

/* Problem Card */
.problem-card {
    padding: 24px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateX(5px);
    border-color: var(--text-color);
}

.problem-icon {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Tag Styles */
.tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.tag-problem {
    background: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
}

.tag-solution {
    background: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
}

/* Metric Cards */
.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 1.25rem;
}

.metric {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 1.1rem;
}

.metric-val {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.metric-label {
    font-size: 16px;
    color: #2a2a2a;
    margin-top: 4px;
    display: block;
    line-height: 1.4;
}

.rcol {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

/* Card Typography */
.card p {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.card ul {
    padding-left: 1.25rem;
    font-size: 18px;
    color: #1e1e1e;
    line-height: 2.1;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 24px 0;
}

.faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 16px;
}

.faq-item-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--body-color);
    line-height: 1.3;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--body-color);
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.faq-item-body {
    display: none;
    margin-top: 16px;
    padding: 16px;
    border: 2px solid #4A90D9;
    border-radius: 4px;
}

.faq-item-body p {
    color: #444;
    line-height: 1.7;
}

.faq-item.open .faq-item-body {
    display: block;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    background: #f5f5f5;
    padding: 28px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 18s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 88px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding-right: 60px;
}

.marquee-item .text-dark {
    color: var(--body-color);
}

.marquee-item .text-orange {
    color: var(--primary-color);
}

.marquee-dot {
    font-weight: 600;
    color: var(--body-color);
    margin: 0 2px;
    line-height: 1.1;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   BANNER / CTA SECTION
   ============================================ */
.banner {
    background: var(--primary-color);
    padding: 28px 0;
}

.banner p {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 600;
    color: var(--body-color);
    line-height: 1.3;
    font-size: 24px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f4f7e7, #ffffff);
    border-radius: 50px;
    padding: 90px;
    text-align: center;
    color: #111;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 16px auto 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 15px;
}

.section-header h1 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
}

.main-heading {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #000;
}

.main-heading h2 {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1f2e;
    color: #fff;
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
}

/* Footer Brand */
.footer-brand .footer-logo {
    display: flex;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 16px;
    line-height: 1;
}

.footer-brand .logo-gfx {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.footer-brand .logo-gfx span {
    color: var(--primary-color);
}

.footer-brand .logo-studio {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    display: block;
    margin-top: 2px;
}

.footer-brand .footer-desc {
    color: #9aa0b0;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #fff;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Navigation */
.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9aa0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Footer Contact */
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.footer-contact-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.footer-contact-text span {
    color: #9aa0b0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #2a3040;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 16px;
    color: #9aa0b0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 16px;
    color: #9aa0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ============================================
   FORM STYLES (Popup/Contact Form 7)
   ============================================ */
.pum-container {
    background: var(--white);
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 560px !important;
    width: 100%;
}

.gfx-form-container .form-header h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.gfx-form-container .form-header h4 {
    font-size: var(--font-size);
    color: var(--muted-text);
    margin-bottom: 28px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field br {
    display: none;
}

.form-field label {
    font-size: 16px;
    color: var(--muted-text);
    margin-bottom: 8px;
    display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-size: var(--font-size);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.wpcf7 input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(163, 206, 37, 0.2);
}

.wpcf7 input::placeholder {
    color: var(--muted-text);
}

.form-submit input[type="submit"] {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    border: none;
    font-size: var(--font-size);
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(131, 168, 25, 0.35);
}

/* Close Button */
.pum-close,
.pum-theme-2084 .pum-content + .pum-close,
.pum-theme-lightbox .pum-content + .pum-close {
    position: absolute;
    height: 26px;
    width: 26px;
    left: auto;
    right: 12px;
    bottom: auto;
    top: 12px;
    padding: 0;
    color: #ffffff;
    font-family: Arial;
    font-weight: 100;
    font-size: 24px;
    line-height: 24px;
    border: 2px solid #ffffff;
    border-radius: 26px;
    box-shadow: unset;
    text-shadow: inherit;
    background-color: inherit;
}

/* ============================================
   FLOATING BUTTONS & MISC
   ============================================ */
/* Sticky FAB */
.sticky-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--body-color);
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(163, 206, 37, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-fab:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--secondary-color);
}

/* Scroll to Top */
#ast-scroll-top {
    background-color: var(--primary-color);
    font-size: 18px;
    bottom: 72px;
    right: 16px;
    position: fixed;
    text-align: center;
    cursor: pointer;
    z-index: 99;
    width: 2.1em;
    height: 2.1em;
    line-height: 2.1;
    color: #ffffff;
    border-radius: 2px;
    content: "";
    outline: inherit;
}

/* ============================================
   IMAGES & MEDIA
   ============================================ */
.work-full img {
    width: 100%;
    background-size: 100%;
    height: auto;
}

.app-01 {
    width: 100%;
    background-image: url("../../assets/images/img_01.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    aspect-ratio: 1920 / 1620;
}

.app-02 {
    width: 100%;
    background-image: url("../../assets/images/img_02.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    aspect-ratio: 1920 / 1220;
}
.app-03 {
    width: 100%;
    background-image: url("../../assets/images/desktop.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    aspect-ratio: 1920 / 834;
}
/* SEO Hidden Image (for Rank Math score) */
.seo-img {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

strong {
    font-weight: 600;
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.icon-circle-1 {
    background-color: #e8eef9;
}

.icon-circle-2 {
    background-color: #eee9f9;
}

.icon-circle-3 {
    background-color: #fceef0;
}

.icon-svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
}

.card-custom {
    background: white;
    border-radius: 16px;
    padding: 48px 40px;
    height: 100%;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.step-description {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    font-weight: 400;
}

.main-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -2px;
    color: #ffffff;
}

.service-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 24px;
    padding: 24px 36px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 32px; 
}

.service-card:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(71, 85, 105, 0.5);
    transform: translateY(-4px);
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.service-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.service-link::after {
    content: '→';
    margin-left: 6px;
    font-size: 18px;
}

/* logo grid – exactly matches the brand list, responsive pixel grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 0.8rem;
}

/* individual logo card – pixel-perfect rounded corners, soft shadow, consistent height */
.logo-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02), 0 0 0 1px #F0F2F5 inset;
    transition: all 0.2s ease;
    padding: 1.2rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    backdrop-filter: blur(0px);
    border: 1px solid #EDF2F7;
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px #E2E8F0;
    border-color: #DCE3EC;
    background: #FEFEFF;
}
.logo-link img {
    width: 240px;
    background-size: 100%;
    height: auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.contact-left {
    padding-right: 60px;
}

.section-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a8d530;
    margin-bottom: 24px;
}

.main-heading .highlight {
    font-family: 'Brush Script MT', cursive;
    font-weight: 400;
    color: #a8d530;
    font-style: italic;
    position: relative;
}

.main-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #a8d530;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 48px;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #f0f8d6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #a8d530;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
}

.contact-details .sub-text {
    font-size: 16px;
    color: #999;
}

.arrow-decoration {
    position: absolute;
    right: -40px;
    top: 20px;
}

.arrow-decoration svg {
    width: 60px;
    height: 60px;
    fill: none;
    stroke: #a8d530;
    stroke-width: 2;
}

.trusted-section {
    margin-top: 40px;
}

.trusted-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 20px;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.logo-item img {
    height: 24px;
    width: auto;
}

.logo-item span {
    font-size: 18px;
    font-weight: 500;
    color: #666;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.form-icon {
    width: 48px;
    height: 48px;
    background-color: #f0f8d6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.form-icon svg {
    width: 24px;
    height: 24px;
    fill: #a8d530;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    padding-right: 44px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-size: 18px;
    color: #333;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #a8d530;
    background-color: #fff;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.3;
}

.input-icon svg {
    width: 100%;
    height: 100%;
    fill: #666;
}

.textarea-wrapper .input-icon {
    top: 20px;
    transform: none;
}

.submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.btn-submit {
    flex: 1;
    padding: 18px 32px;
    background-color: #a8d530;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit:hover {
    background-color: #96c01f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(168, 213, 48, 0.3);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.schedule-link {
    font-size: 18px;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.schedule-link svg {
    width: 20px;
    height: 20px;
    fill: #666;
}

.schedule-link:hover {
    color: #000;
}

.features-row {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f8d6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: #a8d530;
}

.feature-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 16px;
    color: #999;
    line-height: 1.4;
}

/* About page */
.about-page {
    padding: 120px 0;
}

/* COMMON */
.small-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 25px;
}

.section-space {
    padding-top: 140px;
}

.section-title {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 600;
}

.section-title span {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

.section-desc {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text);
}

.signature {
    color: var(--primary-color);
    font-size: 34px;
    font-style: italic;
    margin-top: 30px;
}

/* STATS */
.stats-row {
    margin-top: 60px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-icon {
    width: 58px;
    height: 58px;
    background: rgba(163, 206, 37, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}

.stat-card p {
    margin: 0;
    color: var(--text-color);
}

/* IMAGE */
.image-wrapper {
    position: relative;
    text-align: center;
}

.blob {
    position: absolute;
    width: 520px;
    height: 520px;
    background: #dff28d;
    border-radius: 50%;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.profile-image {
    width: 100%;
    max-width: 500px;
    border-radius: 40px;
    position: relative;
    z-index: 2;
}

/* FLOAT CARD */
.float-card {
    position: absolute;
    right: 0;
    bottom: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 30px;
    width: 290px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.float-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(163, 206, 37, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.float-card h5 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
}

.float-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-top: 15px;
}

/* PHILOSOPHY */
.philosophy-section {
    text-align: center;
}

.philosophy-title {
    font-size: 56px;
    line-height: 1.3;
    font-weight: 600;
}

.philosophy-title span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
}

.philosophy-desc {
    max-width: 760px;
    margin: auto;
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 22px;
    background: rgba(163, 206, 37, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* EXPERIENCE */
.experience-list {
    margin-top: 35px;
}

.experience-list li {
    list-style: none;
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: 17px;
}

.experience-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}

/* SKILLS */
.skills-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.skills-card h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.skill-item {
    margin-bottom: 28px;
}

.skill-item .d-flex {
    margin-bottom: 12px;
}

.progress {
    height: 6px;
    background: #eeeeee;
    border-radius: 20px;
}

.progress-bar {
    background: var(--primary-color);
}

/* PROCESS */
.process-card {
    text-align: center;
    position: relative;
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 25px;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 25px;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-card h5 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.cta-title {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 600;
}

.cta-title span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
}

.cta-desc {
    font-size: 19px;
    color: var(--text-color);
    line-height: 1.9;
    margin-top: 25px;
}

/* BUTTON */
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: var(--primary-color);
    border-radius: 18px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    transition: 0.3s ease;
}

.main-btn:hover {
    transform: translateY(-4px);
    color: #111;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 18px;
    border: 1px solid #dddddd;
    text-decoration: none;
    color: #111;
    font-weight: 700;
}
/* =========================
   HERO SECTION
========================= */
.hero-section{
    background:#070400;
    width:100%;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:90px 0 90px;
}

.hero-content{
    max-width:1200px;
    margin:auto;
}

.hero-title{
    color:#ffffff;
    font-size:72px;
    line-height:1.08;
    font-weight:800;
    letter-spacing:-2px;
    margin-bottom:35px;
}

.hero-description{
    color:#f4f4f4;
    font-size:22px;
    line-height:1.9;
    max-width:1180px;
    margin:0 auto 45px;
    font-weight:400;
}

 

/* =========================
   LINKS SECTION
========================= */
.links-section{
    background:#efefef;
    padding:70px 0 90px;
}

.links-title{
    font-size:64px;
    font-weight:800;
    color:#0e1730;
    margin-bottom:45px;
    letter-spacing:-1px;
}

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

.link-column{
    display:flex;
    flex-direction:column;
    gap:34px;
}

.link-item{
    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:underline;
    color:#101828;
    font-size:24px;
    line-height:1.4;
    font-weight:500;
    transition:0.3s ease;
}

.link-item:hover{
    opacity:0.7;
}

.link-icon{
    width:22px;
    height:22px;
    min-width:22px;
    position:relative;
}

/* External link icon */
.link-icon::before{
    content:"";
    position:absolute;
    width:14px;
    height:14px;
    border:2px solid #111827;
    border-radius:2px;
    left:0;
    bottom:0;
}

.link-icon::after{
    content:"";
    position:absolute;
    width:10px;
    height:10px;
    border-top:2px solid #111827;
    border-right:2px solid #111827;
    right:0;
    top:0;
    transform:rotate(0deg);
}
