/* =========================================================
   AGENCY PRO — PREMIUM PERSONAL WEBSITE
   ========================================================= */

:root {
    --primary: #16c7b4;
    --primary-dark: #0b9d91;
    --primary-light: #72f1e4;

    /* Premium Accent Colors */
    --accent-blue: #4da3ff;
    --accent-blue-soft: #78bbff;
    --accent-violet: #8b7cff;
    --accent-violet-soft: #aaa0ff;

    --bg: #041c18;
    --bg-soft: #06231f;
    --card: #092b25;
    --card-light: #0d342d;

    --text: #f4fffc;
    --text-soft: #b7d1cb;
    --muted: #789891;

    --border: rgba(114, 241, 228, 0.13);

    --shadow:
        0 25px 70px rgba(0, 0, 0, 0.32);

    --radius: 28px;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;

    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(22, 199, 180, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 35%,
            rgba(77, 163, 255, 0.035),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(139, 124, 255, 0.025),
            transparent 25%
        ),
        var(--bg);

    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );

    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    padding: 18px 24px;

    background:
        rgba(4, 28, 24, 0.78);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom:
        1px solid var(--border);
}

.nav {
    width: min(1180px, 100%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--bg);

    font-size: 14px;
    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary)
        );

    box-shadow:
        0 10px 30px rgba(22, 199, 180, 0.18);
}

.brand-info {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.brand-info strong {
    font-size: 16px;
    font-weight: 800;
}

.brand-info small {
    margin-top: 4px;

    color: var(--muted);

    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 25px;
}

.nav-links a {
    position: relative;

    color: var(--text-soft);

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent-blue)
        );

    transition:
        width 0.3s ease;
}

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

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

.nav-button {
    padding: 11px 19px;

    border:
        1px solid
        rgba(114, 241, 228, 0.25);

    border-radius: 14px;

    color: var(--primary-light);

    font-size: 12px;
    font-weight: 700;

    background:
        rgba(22, 199, 180, 0.06);

    transition:
        0.3s ease;
}

.nav-button:hover {
    color: var(--bg);

    background: var(--primary);

    transform: translateY(-2px);
}


/* =========================================================
   GENERAL
   ========================================================= */

main {
    position: relative;
}

.section {
    width: min(1120px, calc(100% - 40px));
    margin: auto;

    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: flex-start;

    gap: 25px;

    margin-bottom: 55px;
}

.section-number {
    min-width: 48px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.small-title {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    max-width: 650px;

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.25;

    font-weight: 800;

    letter-spacing: -1px;
}

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

p {
    color: var(--text-soft);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding:
        150px 24px
        90px;
}

.hero-container {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.9fr);

    align-items: center;

    gap: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 600;

    background:
        rgba(22, 199, 180, 0.05);
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 5px rgba(22, 199, 180, 0.08),
        0 0 18px rgba(22, 199, 180, 0.6);
}

.hero-overline {
    margin-top: 30px;
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
}

.hero h1 {
    max-width: 750px;

    font-size:
        clamp(45px, 6vw, 78px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--primary-light),
            var(--primary),
            var(--accent-blue)
        );

    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 650px;

    margin-top: 25px;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 2;
}

.hero-buttons {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 15px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.primary-button {
    color: var(--bg);

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary),
            var(--accent-blue-soft)
        );

    box-shadow:
        0 15px 35px rgba(22, 199, 180, 0.16);
}

.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(22, 199, 180, 0.25);
}

.secondary-button {
    border:
        1px solid var(--border);

    color: var(--text);

    background:
        rgba(255, 255, 255, 0.025);
}

.secondary-button:hover {
    transform: translateY(-3px);

    border-color:
        rgba(77, 163, 255, 0.35);

    background:
        rgba(77, 163, 255, 0.06);
}

.hero-stats {
    display: flex;
    align-items: center;

    gap: 35px;

    margin-top: 55px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    color: var(--primary);

    font-size: 20px;
    font-weight: 800;
}

.hero-stat span {
    margin-top: 2px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 510px;

    display: grid;
    place-items: center;
}

.visual-glow {
    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 199, 180, 0.09),
            rgba(77, 163, 255, 0.04),
            transparent 70%
        );

    filter: blur(70px);
}

.profile-card {
    position: relative;
    z-index: 2;

    width: min(390px, 85%);

    padding: 28px;

    border:
        1px solid
        rgba(114, 241, 228, 0.18);

    border-radius: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 52, 45, 0.96),
            rgba(5, 29, 25, 0.96)
        );

    box-shadow:
        var(--shadow);

    transform:
        rotate(-4deg);
}

.profile-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-label {
    color: var(--primary);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.profile-number {
    color: var(--muted);

    font-size: 11px;
}

.profile-symbol {
    width: 105px;
    height: 105px;

    margin:
        55px auto 25px;

    display: grid;
    place-items: center;

    border-radius: 30px;

    color: var(--bg);

    font-size: 29px;
    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary),
            var(--accent-blue-soft)
        );

    box-shadow:
        0 25px 50px rgba(22, 199, 180, 0.15);
}

.profile-card h3 {
    text-align: center;

    font-size: 27px;
    font-weight: 800;
}

.profile-card > p {
    margin-top: 5px;

    text-align: center;

    color: var(--muted);

    font-size: 11px;
    letter-spacing: 1px;
}

.profile-line {
    height: 1px;

    margin:
        30px 0 20px;

    background:
        var(--border);
}

.profile-bottom {
    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-size: 10px;
    letter-spacing: 1px;
}

.floating-card {
    position: absolute;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border:
        1px solid
        rgba(114, 241, 228, 0.16);

    border-radius: 17px;

    background:
        rgba(6, 35, 31, 0.9);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);
}

.floating-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--primary);

    background:
        rgba(22, 199, 180, 0.1);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 10px;
}

.floating-card small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 8px;
}

.card-one {
    top: 100px;
    right: 0;
}

.card-two {
    bottom: 95px;
    left: 0;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    border-top:
        1px solid var(--border);
}

.about-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr;

    gap: 70px;

    align-items: stretch;
}

.about-main {
    padding-right: 70px;

    border-right:
        1px solid var(--border);
}

.large-text {
    margin-bottom: 25px;

    color: var(--text);

    font-size: 25px;
    line-height: 1.8;
    font-weight: 700;
}

.about-main > p:last-child {
    max-width: 680px;

    font-size: 15px;
    line-height: 2;
}

.about-highlight {
    position: relative;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(22, 199, 180, 0.09),
            rgba(77, 163, 255, 0.025),
            rgba(9, 43, 37, 0.55)
        );

    overflow: hidden;
}

.about-highlight::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    left: -50px;
    bottom: -60px;

    border-radius: 50%;

    background:
        rgba(77, 163, 255, 0.07);

    filter: blur(20px);
}

.highlight-number {
    display: block;

    margin-bottom: 50px;

    color: var(--primary);

    font-size: 38px;
    font-weight: 900;
}

.about-highlight strong {
    display: block;

    margin-bottom: 8px;

    font-size: 20px;
}

.about-highlight p {
    font-size: 13px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 350px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(13, 52, 45, 0.72),
            rgba(9, 43, 37, 0.45)
        );

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    top: -100px;
    left: -80px;

    border-radius: 50%;

    background:
        rgba(22, 199, 180, 0.08);

    filter: blur(20px);

    transition:
        transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(77, 163, 255, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(13, 52, 45, 0.95),
            rgba(9, 43, 37, 0.72)
        );
}

.service-card:hover::before {
    transform: scale(1.5);
}

.service-number {
    position: absolute;

    top: 25px;
    left: 25px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 800;
}

.service-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 65px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    color: var(--primary);

    font-size: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 199, 180, 0.1),
            rgba(77, 163, 255, 0.06)
        );

    border:
        1px solid
        rgba(114, 241, 228, 0.1);
}

.service-card:nth-child(2) .service-icon {
    color: var(--accent-blue);

    background:
        rgba(77, 163, 255, 0.08);

    border-color:
        rgba(77, 163, 255, 0.13);
}

.service-card:nth-child(3) .service-icon {
    color: var(--accent-violet);

    background:
        rgba(139, 124, 255, 0.08);

    border-color:
        rgba(139, 124, 255, 0.13);
}

.service-card h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.9;
}

.service-arrow {
    position: absolute;

    left: 28px;
    bottom: 25px;

    color: var(--primary);

    font-size: 20px;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.projects-section {
    border-top:
        1px solid var(--border);
}

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.project-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        var(--card);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.project-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(77, 163, 255, 0.22);
}

.project-card.featured {
    grid-column: span 2;

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;
}

.project-preview {
    position: relative;

    min-height: 330px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.project-preview::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(22, 199, 180, 0.12),
            rgba(77, 163, 255, 0.035),
            transparent 60%
        );
}

.browser-bar {
    position: absolute;

    top: 25px;
    left: 25px;
    right: 25px;

    height: 32px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding-right: 12px;

    border-radius: 10px 10px 0 0;

    background:
        rgba(4, 28, 24, 0.75);

    border:
        1px solid
        rgba(114, 241, 228, 0.08);
}

.browser-bar span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        rgba(114, 241, 228, 0.35);
}

.preview-content {
    position: relative;

    width: 76%;

    padding: 65px 25px 30px;

    border:
        1px solid
        rgba(114, 241, 228, 0.13);

    border-radius: 17px;

    background:
        rgba(9, 43, 37, 0.85);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
}

.preview-logo {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.preview-title {
    width: 70%;
    height: 15px;

    margin-top: 28px;

    border-radius: 20px;

    background:
        rgba(244, 255, 252, 0.75);
}

.preview-subtitle {
    width: 48%;
    height: 7px;

    margin-top: 12px;

    border-radius: 20px;

    background:
        rgba(183, 209, 203, 0.28);
}

.preview-products {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin-top: 30px;
}

.preview-products span {
    height: 65px;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 199, 180, 0.25),
            rgba(77, 163, 255, 0.04)
        );
}

.clinic-preview {
    min-height: 360px;

    background:
        radial-gradient(
            circle at center,
            rgba(22, 199, 180, 0.12),
            rgba(139, 124, 255, 0.035),
            transparent 55%
        );
}

.clinic-phone {
    position: relative;

    width: 180px;
    height: 310px;

    padding: 25px 14px 14px;

    border:
        5px solid
        #102f29;

    border-radius: 30px;

    background:
        #061f1b;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);
}

.phone-top {
    position: absolute;

    top: 8px;
    left: 50%;

    width: 55px;
    height: 8px;

    transform: translateX(-50%);

    border-radius: 20px;

    background:
        #123d34;
}

.clinic-logo {
    margin-top: 20px;

    color: var(--primary);

    text-align: center;

    font-size: 10px;
    font-weight: 800;
}

.clinic-lines {
    width: 70%;

    height: 8px;

    margin: 20px auto 15px;

    border-radius: 20px;

    background:
        rgba(244, 255, 252, 0.7);
}

.clinic-boxes {
    display: flex;

    gap: 8px;
}

.clinic-boxes span {
    flex: 1;

    height: 65px;

    border-radius: 10px;

    background:
        rgba(22, 199, 180, 0.1);
}

.clinic-nav {
    position: absolute;

    right: 12px;
    bottom: 12px;
    left: 12px;

    height: 34px;

    display: flex;
    justify-content: space-around;
    align-items: center;

    border-radius: 12px;

    background:
        rgba(13, 52, 45, 0.95);
}

.clinic-nav span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(114, 241, 228, 0.35);
}

.personal-preview {
    min-height: 360px;

    flex-direction: column;

    background:
        radial-gradient(
            circle,
            rgba(22, 199, 180, 0.1),
            rgba(77, 163, 255, 0.035),
            transparent 60%
        );
}

.personal-logo {
    width: 115px;
    height: 115px;

    display: grid;
    place-items: center;

    border-radius: 32px;

    color: var(--bg);

    font-size: 34px;
    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary),
            var(--accent-blue-soft)
        );

    box-shadow:
        0 25px 60px rgba(22, 199, 180, 0.18);
}

.personal-lines {
    width: 180px;

    margin-top: 30px;
}

.personal-lines span {
    display: block;

    height: 6px;

    margin: 10px 0;

    border-radius: 20px;

    background:
        rgba(183, 209, 203, 0.18);
}

.personal-lines span:first-child {
    width: 100%;
}

.personal-lines span:nth-child(2) {
    width: 70%;
}

.personal-lines span:last-child {
    width: 45%;
}

.project-info {
    padding: 30px;
}

.project-category {
    color: var(--accent-blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-info h3 {
    margin-top: 8px;

    font-size: 22px;
}

.project-info p {
    margin-top: 12px;

    font-size: 13px;
    line-height: 1.9;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}

.project-tags span {
    padding: 5px 9px;

    border:
        1px solid var(--border);

    border-radius: 8px;

    color: var(--muted);

    font-size: 9px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
    border-top:
        1px solid var(--border);
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.process-step {
    position: relative;

    padding: 28px 23px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(9, 43, 37, 0.45);
}

.process-step > span {
    display: block;

    margin-bottom: 45px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.process-step:nth-child(2) > span {
    color: var(--accent-blue);
}

.process-step:nth-child(3) > span {
    color: var(--accent-violet);
}

.process-step h3 {
    margin-bottom: 10px;

    font-size: 18px;
}

.process-step p {
    font-size: 12px;
    line-height: 1.9;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefits-section {
    border-top:
        1px solid var(--border);
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.benefit-card {
    padding: 28px 22px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(9, 43, 37, 0.42);

    transition:
        0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(139, 124, 255, 0.22);
}

.benefit-card > span {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.benefit-card:nth-child(2) > span {
    color: var(--accent-blue);
}

.benefit-card:nth-child(3) > span {
    color: var(--accent-violet);
}

.benefit-card h3 {
    margin-top: 35px;
    margin-bottom: 10px;

    font-size: 17px;
}

.benefit-card p {
    font-size: 12px;
    line-height: 1.9;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding-bottom: 120px;
}

.contact-box {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr
        220px;

    align-items: center;

    min-height: 390px;

    padding: 55px;

    border:
        1px solid
        rgba(114, 241, 228, 0.18);

    border-radius: 35px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(13, 52, 45, 0.95),
            rgba(5, 29, 25, 0.95)
        );

    box-shadow:
        var(--shadow);
}

.contact-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -100px;
    bottom: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 199, 180, 0.1),
            rgba(77, 163, 255, 0.04),
            transparent 70%
        );

    filter: blur(25px);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    max-width: 650px;

    font-size:
        clamp(32px, 5vw, 58px);

    line-height: 1.25;
}

.contact-content h2 span {
    color: var(--primary);
}

.contact-content p {
    max-width: 600px;

    margin-top: 18px;

    font-size: 14px;
}

.whatsapp-button {
    width: fit-content;

    margin-top: 30px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 17px;

    border:
        1px solid
        rgba(114, 241, 228, 0.22);

    border-radius: 15px;

    color: var(--text);

    background:
        rgba(22, 199, 180, 0.07);

    font-size: 12px;
    font-weight: 700;

    transition:
        0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px);

    background:
        var(--primary);

    color: var(--bg);
}

.whatsapp-icon {
    display: grid;
    place-items: center;

    padding: 6px 9px;

    border-radius: 8px;

    color: var(--primary-light);

    background:
        rgba(22, 199, 180, 0.1);

    font-size: 9px;
}

.whatsapp-button:hover .whatsapp-icon {
    color: var(--bg);

    background:
        rgba(4, 28, 24, 0.12);
}

.contact-mark {
    position: relative;
    z-index: 1;

    width: 170px;
    height: 170px;

    margin-right: auto;

    display: grid;
    place-items: center;

    border-radius: 45px;

    color: var(--bg);

    font-size: 42px;
    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary),
            var(--accent-blue-soft)
        );

    transform:
        rotate(7deg);

    box-shadow:
        0 30px 70px rgba(22, 199, 180, 0.15);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    width: min(1120px, calc(100% - 40px));

    margin: auto;

    padding: 30px 0 40px;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 30px;

    border-top:
        1px solid var(--border);

    color: var(--muted);

    font-size: 11px;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-brand > span {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--bg);

    background:
        var(--primary);

    font-size: 10px;
    font-weight: 900;
}

.footer-brand strong {
    color: var(--text);

    font-size: 12px;
}

footer p {
    text-align: center;

    color: var(--muted);

    font-size: 10px;
}

.footer-copy {
    direction: ltr;

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .hero-container {
        grid-template-columns:
            1fr;

        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 450px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-grid .service-card:last-child {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .header {
        padding: 12px 15px;
    }

    .nav {
        gap: 10px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;

        border-radius: 12px;
    }

    .brand-info strong {
        font-size: 13px;
    }

    .brand-info small {
        font-size: 7px;
    }

    .nav-links {
        display: none;
    }

    .nav-button {
        padding: 9px 13px;

        font-size: 10px;
    }

    .hero {
        padding:
            130px 18px
            70px;
    }

    .hero h1 {
        font-size:
            clamp(38px, 12vw, 58px);

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 2;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-stats {
        gap: 25px;

        margin-top: 40px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .profile-card {
        width: 78%;

        padding: 22px;

        border-radius: 25px;
    }

    .profile-symbol {
        width: 85px;
        height: 85px;

        margin-top: 40px;

        border-radius: 24px;

        font-size: 24px;
    }

    .profile-card h3 {
        font-size: 22px;
    }

    .floating-card {
        padding: 10px;

        transform: scale(0.88);
    }

    .card-one {
        right: -5px;
        top: 80px;
    }

    .card-two {
        left: -5px;
        bottom: 65px;
    }

    .section {
        width: min(
            100% - 30px,
            1120px
        );

        padding: 75px 0;
    }

    .section-heading {
        gap: 15px;

        margin-bottom: 35px;
    }

    .section-number {
        min-width: 35px;

        font-size: 10px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .about-grid {
        grid-template-columns:
            1fr;

        gap: 25px;
    }

    .about-main {
        padding-right: 0;

        padding-bottom: 25px;

        border-right: 0;

        border-bottom:
            1px solid var(--border);
    }

    .large-text {
        font-size: 20px;
    }

    .services-grid {
        grid-template-columns:
            1fr;
    }

    .services-grid .service-card:last-child {
        grid-column: auto;
    }

    .service-card {
        min-height: 310px;
    }

    .projects-grid {
        grid-template-columns:
            1fr;
    }

    .project-card.featured {
        grid-column: auto;

        display: block;
    }

    .project-preview {
        min-height: 280px;
    }

    .process-grid,
    .benefits-grid {
        grid-template-columns:
            1fr;
    }

    .contact-box {
        grid-template-columns:
            1fr;

        padding: 35px 25px;

        min-height: auto;

        gap: 45px;
    }

    .contact-mark {
        width: 120px;
        height: 120px;

        margin: 0 auto;

        border-radius: 32px;

        font-size: 30px;
    }

    .whatsapp-button {
        width: 100%;

        justify-content: space-between;
    }

    footer {
        grid-template-columns:
            1fr;

        text-align: center;

        gap: 15px;
    }

    .footer-brand {
        justify-content: center;
    }

    footer p {
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .profile-card {
        width: 82%;
    }

    .floating-card {
        transform: scale(0.75);
    }

    .card-one {
        right: -15px;
    }

    .card-two {
        left: -15px;
    }

    .section-heading h2 {
        font-size: 27px;
    }
}


/* =========================================================
   JAVASCRIPT REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   HEADER AFTER SCROLLING
   ========================================================= */

.header.scrolled {
    background:
        rgba(4, 28, 24, 0.94);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   CONTACT ACTIONS
   ========================================================= */

.contact-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.whatsapp-button,
.instagram-button {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    color: var(--text);

    background:
        rgba(255, 255, 255, 0.025);

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


/* WhatsApp */

.whatsapp-button:hover {
    transform: translateY(-3px);

    border-color:
        rgba(114, 241, 228, 0.3);

    background:
        rgba(22, 199, 180, 0.12);
}

.whatsapp-icon {
    padding: 6px 9px;

    border-radius: 8px;

    color: var(--primary-light);

    background:
        rgba(22, 199, 180, 0.1);

    font-size: 9px;
}


/* Instagram */

.instagram-button:hover {
    transform: translateY(-3px);

    border-color:
        rgba(139, 124, 255, 0.3);

    background:
        rgba(139, 124, 255, 0.07);
}

.instagram-icon {
    padding: 6px 9px;

    border-radius: 8px;

    color: var(--accent-violet-soft);

    background:
        rgba(139, 124, 255, 0.09);

    font-size: 9px;
}


/* =========================================================
   FOOTER UPDATE
   ========================================================= */

footer {
    grid-template-columns:
        auto
        1fr
        auto
        auto;

    gap: 25px;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-brand > div {
    display: flex;
    flex-direction: column;

    line-height: 1.3;
}

.footer-brand small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 8px;
}

.footer-social {
    display: flex;
    align-items: center;

    gap: 12px;
}

.footer-social a {
    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    transition:
        color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-blue-soft);
}


/* =========================================================
   MOBILE CONTACT + FOOTER
   ========================================================= */

@media (max-width: 700px) {

    .contact-actions {
        flex-direction: column;
    }

    .whatsapp-button,
    .instagram-button {
        width: 100%;

        justify-content: space-between;
    }

    footer {
        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}


/* =========================================================
   AGENCY PRO — FINAL MOBILE LAYOUT POLISH
   ========================================================= */

@media (max-width: 700px) {

    .section {
        width: calc(100% - 30px);

        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 28px;

        gap: 10px;

        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 29px;

        line-height: 1.35;

        letter-spacing: -0.7px;
    }

    .section-number {
        min-width: 30px;

        padding-top: 4px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding:
            125px 18px
            65px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size:
            clamp(36px, 11vw, 52px);

        line-height: 1.2;

        letter-spacing: -1.8px;
    }

    .hero-description {
        margin-top: 18px;

        font-size: 13px;
        line-height: 2;
    }

    .hero-buttons {
        margin-top: 25px;

        gap: 10px;
    }

    .button {
        min-height: 50px;

        width: 100%;

        border-radius: 14px;
    }

    .hero-stats {
        margin-top: 32px;

        gap: 20px;
    }


    /* PROFILE */

    .hero-visual {
        min-height: 360px;
    }

    .profile-card {
        width: 86%;

        min-height: 380px;

        padding: 0;

        border-radius: 25px;

        transform:
            rotate(-2deg);
    }

    .profile-card img {
        width: 100%;
        height: 100%;

        min-height: 380px;

        object-fit: contain !important;

        object-position: center;
    }


    /* ABOUT */

    .about-grid {
        gap: 20px;
    }

    .about-main {
        padding-bottom: 22px;
    }

    .large-text {
        font-size: 19px;
        line-height: 1.8;
    }

    .about-main > p:last-child {
        font-size: 13px;
        line-height: 2;
    }

    .about-highlight {
        padding: 25px;

        min-height: 190px;
    }

    .highlight-number {
        margin-bottom: 28px;

        font-size: 30px;
    }


    /* SERVICES */

    .services-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .service-card {
        min-height: 0 !important;

        height: 270px;

        padding: 24px;

        display: flex;
        flex-direction: column;

        justify-content: flex-end;

        border-radius: 26px;
    }

    .service-number {
        top: 20px;
        left: 22px;

        font-size: 10px;
    }

    .service-icon {
        position: absolute;

        top: 20px;
        right: 20px;

        width: 58px;
        height: 58px;

        margin: 0;

        border-radius: 17px;
    }

    .service-card h3 {
        margin:
            0 0 10px;

        font-size: 21px;
        line-height: 1.4;
    }

    .service-card p {
        margin: 0;

        font-size: 13px;
        line-height: 1.9;
    }

    .service-arrow {
        left: 25px;
        bottom: 20px;

        font-size: 18px;
    }


    /* PROJECTS */

    .projects-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .project-card,
    .project-card.featured {
        display: block;

        grid-column: auto;

        border-radius: 26px;
    }

    .project-preview {
        min-height: 250px;

        height: 250px;
    }

    .project-preview img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .project-info {
        padding: 22px;
    }

    .project-info h3 {
        font-size: 20px;
    }

    .project-info p {
        font-size: 13px;
        line-height: 1.9;
    }

    .project-tags {
        margin-top: 16px;
    }


    /* PROCESS */

    .process-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .process-step {
        min-height: 210px;

        padding: 22px;

        border-radius: 24px;
    }

    .process-step > span {
        margin-bottom: 35px;
    }

    .process-step h3 {
        font-size: 20px;
    }

    .process-step p {
        font-size: 13px;
        line-height: 1.9;
    }


    /* BENEFITS */

    .benefits-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .benefit-card {
        min-height: 190px;

        padding: 24px;

        border-radius: 24px;
    }

    .benefit-card h3 {
        margin-top: 25px;

        font-size: 19px;
    }

    .benefit-card p {
        font-size: 13px;
        line-height: 1.9;
    }


    /* CONTACT */

    .contact-section {
        padding-bottom: 75px;
    }

    .contact-box {
        padding: 30px 22px;

        border-radius: 28px;

        gap: 30px;
    }

    .contact-content h2 {
        font-size: 34px;

        line-height: 1.4;
    }

    .contact-content p {
        font-size: 13px;

        line-height: 1.9;
    }

    .contact-actions {
        width: 100%;

        gap: 10px;
    }

    .whatsapp-button,
    .instagram-button {
        width: 100%;

        min-height: 52px;

        justify-content: center;

        border-radius: 14px;
    }

    .contact-mark {
        width: 105px;
        height: 105px;

        border-radius: 28px;

        font-size: 28px;
    }


    /* FOOTER */

    footer {
        width: calc(100% - 30px);

        padding: 25px 0 35px;

        gap: 13px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .section {
        width: calc(100% - 24px);

        padding: 55px 0;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .service-card {
        height: 255px;

        padding: 21px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 12px;
    }

    .project-preview {
        height: 220px;

        min-height: 220px;
    }

    .contact-content h2 {
        font-size: 30px;
    }
}


/* =========================================================
   BUTTON POLISH
   ========================================================= */

.button,
.nav-button,
.whatsapp-button,
.instagram-button {
    -webkit-user-select: none;
    user-select: none;

    cursor: pointer;
}

.button:active,
.nav-button:active,
.whatsapp-button:active,
.instagram-button:active {
    transform: scale(0.97);
}


/* =========================================================
   HEADER MOBILE POLISH
   ========================================================= */

@media (max-width: 700px) {

    .header {
        padding: 10px 12px;
    }

    .nav {
        min-height: 58px;
    }

    .brand {
        gap: 9px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;

        border-radius: 12px;
    }

    .brand-info strong {
        font-size: 13px;
    }

    .brand-info small {
        font-size: 7px;

        letter-spacing: 1.2px;
    }

    .nav-button {
        min-height: 42px;

        padding: 8px 14px;

        border-radius: 13px;

        font-size: 10px;
    }
}


/* =========================================================
   REVEAL — MORE NATURAL
   ========================================================= */

@media (max-width: 700px) {

    .reveal {
        transform:
            translateY(15px);

        transition:
            opacity 0.55s ease,
            transform 0.55s ease;
    }
}


/* =========================================================
   FINAL SPACING FIX — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .about-section {
        padding-top: 42px;
        padding-bottom: 35px;
    }

    .about-grid {
        gap: 18px;
    }

    .about-main {
        padding-bottom: 18px;
    }

    .about-highlight {
        min-height: 180px;

        padding: 23px;
    }

    .highlight-number {
        margin-bottom: 22px;
    }


    /* SERVICES */

    .services-section {
        padding-top: 38px;
    }

    .services-grid {
        gap: 14px;
    }

    .service-card {
        height: 255px;
    }


    /* PROJECTS */

    .projects-section {
        padding-top: 45px;
    }


    /* PROCESS */

    .process-section {
        padding-top: 45px;
    }

    .process-grid {
        gap: 12px;
    }


    /* BENEFITS */

    .benefits-section {
        padding-top: 45px;
    }


    /* CONTACT */

    .contact-section {
        padding-top: 45px;
        padding-bottom: 55px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-section,
    .services-section,
    .projects-section,
    .process-section,
    .benefits-section {
        padding-top: 38px;
    }
}


/* =========================================================
   TEXT TYPOGRAPHY — ABOUT / HERO MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .about-section .section-heading {
        display: block;

        text-align: right;

        margin-bottom: 30px;
    }

    .about-section .section-number {
        display: block;

        margin-bottom: 8px;
    }

    .about-section .small-title {
        margin-bottom: 10px;

        font-size: 13px;
    }

    .about-section .section-heading h2 {
        max-width: 100%;

        font-size: 34px;

        line-height: 1.35;

        letter-spacing: -1px;
    }

    .about-main .large-text {
        max-width: 100%;

        margin:
            0 0 22px;

        color: var(--text);

        font-size: 21px;

        line-height: 1.9;

        font-weight: 700;

        text-align: right;
    }

    .about-main > p:last-child {
        max-width: 100%;

        margin: 0;

        color: var(--text-soft);

        font-size: 14px;

        line-height: 2.1;

        font-weight: 400;

        text-align: right;
    }

    .about-main {
        padding-bottom: 28px;
    }
}


/* =========================================================
   SMALL MOBILE TEXT
   ========================================================= */

@media (max-width: 400px) {

    .about-section .section-heading h2 {
        font-size: 30px;
    }

    .about-main .large-text {
        font-size: 19px;

        line-height: 1.85;
    }

    .about-main > p:last-child {
        font-size: 13px;

        line-height: 2;
    }
}


/* =========================================================
   AGENCY PRO — PACKAGES SECTION
   ========================================================= */

.packages-section {
    border-top:
        1px solid var(--border);
}

.packages-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.package-card {
    position: relative;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(13, 52, 45, .95),
            rgba(4, 28, 24, .98)
        );

    overflow: hidden;

    transition:
        .3s ease;
}

.package-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(77, 163, 255, .30);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .18);
}

.package-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -90px;
    left: -70px;

    border-radius: 50%;

    background:
        rgba(22, 199, 180, .08);

    filter: blur(20px);
}

.package-card:nth-child(2)::before {
    background:
        rgba(77, 163, 255, .08);
}

.package-card:nth-child(3)::before {
    background:
        rgba(139, 124, 255, .08);
}

.package-top {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 35px;
}

.package-number {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.package-card:nth-child(2) .package-number {
    color: var(--accent-blue);
}

.package-card:nth-child(3) .package-number {
    color: var(--accent-violet);
}

.package-label {
    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}

.package-card h3 {
    position: relative;

    font-size: 25px;

    line-height: 1.4;
}

.package-card h3 small {
    display: block;

    margin-top: 4px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .5px;
}

.package-card:nth-child(2) h3 small {
    color: var(--accent-blue-soft);
}

.package-card:nth-child(3) h3 small {
    color: var(--accent-violet-soft);
}

.package-description {
    position: relative;

    margin-top: 18px;

    font-size: 13px;

    line-height: 2;

    color: var(--text-soft);
}

.package-list {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 12px;

    margin: 25px 0;

    padding: 0;

    list-style: none;
}

.package-list li {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.8;
}

.package-list li span {
    flex-shrink: 0;

    color: var(--primary);

    font-weight: 800;
}

.package-card:nth-child(2) .package-list li span {
    color: var(--accent-blue);
}

.package-card:nth-child(3) .package-list li span {
    color: var(--accent-violet);
}

.package-button {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 48px;

    padding: 0 15px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    color: var(--text);

    background:
        rgba(255, 255, 255, .025);

    font-size: 11px;

    font-weight: 800;

    transition:
        .3s ease;
}

.package-button:hover {
    color: var(--bg);

    background:
        var(--primary);

    transform:
        translateY(-2px);
}

.package-card:nth-child(2) .package-button:hover {
    background:
        var(--accent-blue);
}

.package-card:nth-child(3) .package-button:hover {
    background:
        var(--accent-violet);
}

.package-featured {
    display: inline-flex;

    margin-bottom: 12px;

    padding: 5px 9px;

    border-radius: 8px;

    color: var(--accent-blue-soft);

    background:
        rgba(77, 163, 255, .08);

    border:
        1px solid
        rgba(77, 163, 255, .1);

    font-size: 9px;

    font-weight: 800;
}


/* Tablet */

@media (max-width:1000px) {

    .packages-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .package-card:last-child {
        grid-column:
            span 2;
    }
}


/* Mobile */

@media (max-width:700px) {

    .packages-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .packages-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .package-card,
    .package-card:last-child {
        grid-column: auto;

        padding: 25px;

        border-radius: 25px;
    }

    .package-top {
        margin-bottom: 24px;
    }

    .package-card h3 {
        font-size: 23px;
    }

    .package-description {
        font-size: 13px;

        line-height: 1.9;
    }

    .package-list {
        gap: 9px;

        margin: 20px 0;
    }

    .package-list li {
        font-size: 12px;
    }

    .package-button {
        min-height: 50px;
    }
}


/* Small phones */

@media (max-width:400px) {

    .package-card {
        padding: 22px;
    }

    .package-card h3 {
        font-size: 21px;
    }
}