/* =========================================================

   ISPANIYA.UZ

   MAIN STYLESHEET

   España + Uzbekistán

========================================================= */

/* =========================================================

   01. RESET

========================================================= */

*,

*::before,

*::after {

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    margin: 0;

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    background: #ffffff;

    color: #1c2a38;

    overflow-x: hidden;

}

img {

    max-width: 100%;

    height: auto;

}

a {

    color: inherit;

    text-decoration: none;

}

button,

input,

textarea,

select {

    font: inherit;

}

button {

    cursor: pointer;

}

/* =========================================================

   02. VARIABLES

========================================================= */

:root {

    /* UZBEKISTAN */

    --uz-blue: #19a7ce;

    --uz-blue-dark: #118aaa;

    --uz-green: #20a464;

    --uz-green-dark: #178751;

    /* SPAIN */

    --es-red: #d92b37;

    --es-red-dark: #b91f2c;

    --es-yellow: #f4c83e;

    --es-yellow-dark: #c99b0d;

    /* GENERAL */

    --dark: #101d2c;

    --dark-soft: #17283a;

    --text: #40505f;

    --muted: #71808e;

    --light: #f7fafb;

    --light-blue: #eefafe;

    --border: #e5ecef;

    --white: #ffffff;

    /* SHADOW */

    --shadow-sm:

        0 10px 28px

        rgba(15,23,42,.05);

    --shadow-md:

        0 20px 45px

        rgba(15,23,42,.09);

    --shadow-lg:

        0 30px 65px

        rgba(15,23,42,.16);

    /* RADIUS */

    --radius-sm: 10px;

    --radius-md: 16px;

    --radius-lg: 24px;

    /* WIDTH */

    --container: 1380px;

}

/* =========================================================

   03. GLOBAL LAYOUT

========================================================= */

.container {

    width: 100%;

    max-width: var(--container);

    margin: 0 auto;

    padding-left: 26px;

    padding-right: 26px;

}

.section {

    padding: 95px 0;

}

.section-light {

    background: var(--light);

}

.section-dark {

    background:

        linear-gradient(

            135deg,

            #101d2b,

            #14283b

        );

    color: #ffffff;

}

/* =========================================================

   04. SPAIN + UZBEKISTAN ACCENT

========================================================= */

.country-accent-line {

    height: 4px;

    background:

        linear-gradient(

            90deg,

            var(--uz-blue) 0%,

            var(--uz-blue) 30%,

            var(--uz-green) 30%,

            var(--uz-green) 48%,

            var(--es-yellow) 48%,

            var(--es-yellow) 68%,

            var(--es-red) 68%,

            var(--es-red) 100%

        );

}

.flag-line {

    display: flex;

    gap: 6px;

    margin-bottom: 28px;

}

.flag-line span {

    height: 6px;

    border-radius: 20px;

}

.flag-line .blue {

    width: 55px;

    background: var(--uz-blue);

}

.flag-line .green {

    width: 28px;

    background: var(--uz-green);

}

.flag-line .yellow {

    width: 28px;

    background: var(--es-yellow);

}

.flag-line .red {

    width: 55px;

    background: var(--es-red);

}

/* =========================================================

   05. HEADER

========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 9999;

    width: 100%;

    background:

        rgba(255,255,255,.97);

    backdrop-filter:

        blur(12px);

    border-bottom:

        1px solid #e8edf2;

}

.header-top-line {

    height: 4px;

    background:

        linear-gradient(

            90deg,

            var(--uz-blue) 0%,

            var(--uz-blue) 30%,

            var(--uz-green) 30%,

            var(--uz-green) 48%,

            var(--es-yellow) 48%,

            var(--es-yellow) 68%,

            var(--es-red) 68%,

            var(--es-red) 100%

        );

}

.header-inner {

    max-width: var(--container);

    height: 78px;

    margin: 0 auto;

    padding:

        0 26px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

}

/* =========================================================

   06. HEADER LOGO

========================================================= */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}

.brand-symbol {

    position: relative;

    width: 39px;

    height: 39px;

    display: block;

    overflow: hidden;

    border-radius: 11px;

    box-shadow:

        0 4px 12px

        rgba(0,0,0,.08);

}

.symbol-uz {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 52%;

    background:

        linear-gradient(

            135deg,

            var(--uz-blue),

            #21b2cf

        );

}

.symbol-es {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 48%;

    background:

        linear-gradient(

            135deg,

            var(--es-yellow) 0%,

            var(--es-yellow) 48%,

            var(--es-red) 48%,

            var(--es-red) 100%

        );

}

.brand-text {

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -1px;

    white-space: nowrap;

}

.brand-main {

    color: #182435;

}

.brand-domain {

    color: var(--uz-blue-dark);

}

/* =========================================================

   07. HEADER NAVIGATION

========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-left: auto;

}

.nav-link,

.nav-dropdown-button {

    height: 44px;

    padding:

        0 13px;

    display: inline-flex;

    align-items: center;

    border: 0;

    background: transparent;

    color: #334155;

    font-size: 14px;

    font-weight: 600;

    border-radius: 8px;

    transition:

background .2s ease,

        color .2s ease;

}

.nav-link:hover,

.nav-dropdown-button:hover {

    background: #f1f7fa;

    color: var(--uz-blue-dark);

}

.dropdown-arrow {

    margin-left: 6px;

    font-size: 13px;

    transition:

        transform .2s ease;

}

.nav-dropdown {

    position: relative;

}

/* =========================================================

   08. DROPDOWN MENU

========================================================= */

.dropdown-menu {

    position: absolute;

    top: calc(100% + 12px);

    left: 0;

    width: 310px;

    padding: 9px;

    background: #ffffff;

    border:

        1px solid #e4e9ee;

    border-radius: 15px;

    box-shadow:

        0 18px 45px

        rgba(15,23,42,.12);

    opacity: 0;

    visibility: hidden;

    transform:

        translateY(8px);

    transition:

        opacity .18s ease,

        visibility .18s ease,

        transform .18s ease;

}

.dropdown-menu-small {

    width: 300px;

}

.nav-dropdown:hover

.dropdown-menu,

.nav-dropdown:focus-within

.dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:

        translateY(0);

}

.nav-dropdown:hover

.dropdown-arrow {

    transform:

        rotate(180deg);

}

.dropdown-menu a {

    display: block;

    padding:

        12px 13px;

    border-radius: 10px;

    transition:

background .18s ease;

}

.dropdown-menu a:hover {

    background: #f5fafc;

}

.menu-title {

    display: block;

    color: #1f2937;

    font-size: 14px;

    font-weight: 700;

}

.menu-desc {

    display: block;

    margin-top: 3px;

    color: #7b8794;

    font-size: 12px;

    line-height: 1.45;

}

/* =========================================================

   09. HEADER CONTACT BUTTON

========================================================= */

.header-contact {

    flex-shrink: 0;

    min-height: 44px;

    padding:

        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:

        linear-gradient(

            135deg,

            var(--es-red),

            var(--es-red-dark)

        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    box-shadow:

        0 7px 18px

        rgba(217,43,55,.18);

    transition:

        transform .2s ease,

        box-shadow .2s ease;

}

.header-contact:hover {

    transform:

        translateY(-1px);

    box-shadow:

        0 10px 24px

        rgba(217,43,55,.26);

}

/* =========================================================

   10. MOBILE MENU

========================================================= */

.mobile-menu-button {

    display: none;

    width: 44px;

    height: 44px;

    padding: 0;

    border: 0;

    background: transparent;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

}

.mobile-menu-button span {

    width: 24px;

    height: 2px;

    background: #253242;

    border-radius: 3px;

}

.mobile-menu {

    display: none;

    padding:

        10px 18px 22px;

    background: #ffffff;

    border-top:

        1px solid #edf0f3;

}

.mobile-menu.active {

    display: block;

}

.mobile-main-link {

    display: block;

    padding:

        15px 5px;

    border-bottom:

        1px solid #eef1f4;

    color: #243142;

    font-size: 15px;

    font-weight: 700;

}

.mobile-dropdown {

    border-bottom:

        1px solid #eef1f4;

}

.mobile-dropdown-button {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:

        15px 5px;

    border: 0;

    background: transparent;

    color: #243142;

    font-size: 15px;

    font-weight: 700;

    text-align: left;

}

.mobile-dropdown-button span {

    color: var(--uz-blue-dark);

    font-size: 21px;

    transition:

        transform .2s ease;

}

.mobile-dropdown.active

.mobile-dropdown-button span {

    transform:

        rotate(45deg);

}

.mobile-submenu {

    display: none;

    padding:

        0 0 12px 13px;

}

.mobile-dropdown.active

.mobile-submenu {

    display: block;

}

.mobile-submenu a {

    display: block;

    padding:

        10px 6px;

    color: #647384;

    font-size: 14px;

}

.mobile-submenu a:hover {

    color: var(--uz-blue-dark);

}

.mobile-contact {

    min-height: 48px;

    margin-top: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: var(--es-red);

    color: #ffffff;

    font-weight: 700;

}

/* =========================================================

   11. PAGE HERO

========================================================= */

.page-hero {

    position: relative;

    overflow: hidden;

    padding:

        95px 0 100px;

    background:

        linear-gradient(

            135deg,

            #eefafe 0%,

            #ffffff 50%,

            #fff8ef 100%

        );

}

.page-hero::before {

    content: "";

    position: absolute;

    width: 460px;

    height: 460px;

    top: -240px;

    right: -210px;

    border-radius: 50%;

    background:

        rgba(217,43,55,.10);

}

.page-hero::after {

    content: "";

    position: absolute;

    width: 430px;

    height: 430px;

    left: -220px;

    bottom: -260px;

    border-radius: 50%;

    background:

        rgba(25,167,206,.12);

}

.page-hero-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:

        1.1fr .9fr;

    gap: 70px;

    align-items: center;

}

.page-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 21px;

    padding:

        8px 14px;

    border-radius: 30px;

    border:

        1px solid #dce8ed;

    background:

        rgba(255,255,255,.85);

    color:

        var(--uz-blue-dark);

    font-size: 13px;

    font-weight: 800;

}

.page-label::before {

    content: "";

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: var(--es-red);

}

.page-hero h1 {

    max-width: 780px;

    margin:

        0 0 22px;

    color: var(--dark);

    font-size:

        clamp(

            43px,

            5vw,

            66px

        );

    line-height: 1.08;

    letter-spacing: -2.5px;

}

.page-hero h1 strong {

    color: var(--es-red);

}

.page-hero-text {

    max-width: 720px;

    margin: 0;

    color: var(--text);

    font-size: 18px;

    line-height: 1.75;

}

/* =========================================================

   12. HERO INFO CARD

========================================================= */

.hero-card {

    padding: 36px;

    border-radius: var(--radius-lg);

    background:

        linear-gradient(

            145deg,

            #101d2b,

            #172c40

        );

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

}

.hero-card h2 {

    margin:

        0 0 25px;

    color: #ffffff;

    font-size: 29px;

    line-height: 1.3;

}

.hero-card-small {

    margin-bottom: 10px;

    color: #7f95a8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.hero-card-row {

    display: flex;

    align-items: center;

    gap: 12px;

    padding:

        13px 0;

    border-bottom:

        1px solid

        rgba(255,255,255,.08);

    color: #dbe4eb;

    font-size: 14px;

}

.hero-card-row:last-child {

    border-bottom: 0;

}

.hero-check {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:

        rgba(32,164,100,.16);

    color: #58d698;

    font-size: 11px;

    font-weight: 800;

}

/* =========================================================

   13. SECTION HEADINGS

========================================================= */

.section-heading {

    max-width: 820px;

    margin:

        0 auto 55px;

    text-align: center;

}

.section-tag {

    margin-bottom: 12px;

    color: var(--uz-blue-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.section-heading h2 {

    margin:

        0 0 17px;

    color: var(--dark);

    font-size:

        clamp(

            34px,

            4vw,

            47px

        );

    line-height: 1.2;

    letter-spacing: -1.5px;

}

.section-heading p {

    margin: 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.75;

}

.section-dark

.section-heading h2 {

    color: #ffffff;

}

.section-dark

.section-heading p {

    color: #a6b4bf;

}

.section-dark

.section-tag {

    color: #59c7df;

}

/* =========================================================

   14. BUTTONS

========================================================= */

.btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:

        0 25px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    transition:

        transform .2s ease,

        box-shadow .2s ease;

}

.btn:hover {

    transform:

        translateY(-2px);

}

.btn-red {

    color: #ffffff;

    background:

        linear-gradient(

            135deg,

            var(--es-red),

            var(--es-red-dark)

        );

    box-shadow:

        0 10px 24px

        rgba(217,43,55,.2);

}

.btn-blue {

    color: var(--uz-blue-dark);

    background: #ffffff;

    border:

        1px solid #cce5ed;

}

.btn-green {

    color: #ffffff;

    background:

        linear-gradient(

            135deg,

            var(--uz-green),

            var(--uz-green-dark)

        );

}

.btn-white {

    color: #263645;

    background: #ffffff;

}

.button-group {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

}

/* =========================================================

   15. GENERIC CARDS

========================================================= */

.card-grid {

    display: grid;

    grid-template-columns:

        repeat(3, 1fr);

    gap: 20px;

}

.card {

    padding: 29px;

    border-radius: 17px;

    background: #ffffff;

    border:

        1px solid var(--border);

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

    transition:

        transform .22s ease,

        box-shadow .22s ease,

        border-color .22s ease;

}

.card:hover {

    transform:

        translateY(-5px);

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

    border-color:

        #c9e5ec;

}

.card h3 {

    margin:

        0 0 10px;

    color: var(--dark);

    font-size: 19px;

}

.card p {

    margin: 0;

    color: var(--muted);

    font-size: 13.5px;

    line-height: 1.7;

}

.card-link {

    display: inline-block;

    margin-top: 20px;

    color: var(--uz-blue-dark);

    font-size: 13px;

    font-weight: 800;

}

/* =========================================================

   16. NUMBERED LIST CARDS

========================================================= */

.number-list {

    max-width: 1030px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.number-card {

    display: grid;

    grid-template-columns:

        82px 1fr;

    gap: 25px;

    padding: 30px;

    border-radius: 18px;

    background: #ffffff;

    border:

        1px solid var(--border);

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

}

.number-badge {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: #eaf9fd;

    color: var(--uz-blue-dark);

    font-size: 22px;

    font-weight: 800;

}

.number-card:nth-child(2n)

.number-badge {

    background: #fff0f1;

    color: var(--es-red);

}

.number-card:nth-child(3n)

.number-badge {

    background: #ecfaf3;

    color: var(--uz-green-dark);

}

.number-card h3 {

    margin:

        1px 0 9px;

    color: var(--dark);

    font-size: 21px;

}

.number-card p {

    margin:

        0 0 10px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.75;

}

/* =========================================================

   17. INFO NOTE

========================================================= */

.info-note {

    display: inline-block;

    margin-top: 4px;

    padding:

        8px 11px;

    border-radius: 7px;

    background: #f5f8fa;

    color: var(--muted);

    font-size: 12.5px;

    line-height: 1.5;

}

.notice {

    max-width: 1030px;

    margin:

        45px auto 0;

    padding: 27px;

    display: flex;

    gap: 17px;

    border-radius: 16px;

    background: #fffaf0;

    border:

        1px solid #f2dfaa;

}

.notice-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--es-yellow);

    color: #644d00;

    font-weight: 900;

}

.notice h3 {

    margin:

        1px 0 7px;

    color: var(--dark);

    font-size: 16px;

}

.notice p {

    margin: 0;

    color: #6e6753;

    font-size: 13.5px;

    line-height: 1.7;

}

/* =========================================================

   18. FEATURE GRID

========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

    gap: 18px;

}

.feature-card {

    padding: 27px;

    border-radius: 16px;

    background: #ffffff;

    border:

        1px solid var(--border);

}

.feature-icon {

    width: 48px;

    height: 48px;

    margin-bottom: 19px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: #edf9fc;

    color: var(--uz-blue-dark);

    font-weight: 800;

}

.feature-card:nth-child(2n)

.feature-icon {

    background: #fff0f1;

    color: var(--es-red);

}

.feature-card:nth-child(3n)

.feature-icon {

    background: #ecfaf3;

    color: var(--uz-green-dark);

}

.feature-card h3 {

    margin:

        0 0 9px;

    color: var(--dark);

    font-size: 17px;

}

.feature-card p {

    margin: 0;

    color: var(--muted);

    font-size: 13.5px;

    line-height: 1.7;

}

/* =========================================================

   19. DARK PROCESS CARDS

========================================================= */

.process-grid {

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

    gap: 17px;

}

.process-card {

    padding: 27px;

    border-radius: 15px;

    background:

        rgba(255,255,255,.05);

    border:

        1px solid

        rgba(255,255,255,.08);

}

.process-number {

    margin-bottom: 17px;

    color: var(--es-yellow);

    font-size: 25px;

    font-weight: 800;

}

.process-card h3 {

    margin:

        0 0 9px;

    color: #ffffff;

    font-size: 17px;

}

.process-card p {

    margin: 0;

    color: #9cadba;

    font-size: 13.5px;

    line-height: 1.7;

}

/* =========================================================

   20. SERVICE CARDS

========================================================= */

.service-grid {

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

    gap: 22px;

}

.service-card {

    position: relative;

    min-height: 310px;

    padding: 30px;

    border-radius: 18px;

    background: #ffffff;

    border:

        1px solid var(--border);

    transition:

        transform .25s ease,

        box-shadow .25s ease;

}

.service-card:hover {

    transform:

        translateY(-6px);

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

}

.service-icon {

    width: 55px;

    height: 55px;

    margin-bottom: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #edf9fc;

    color: var(--uz-blue-dark);

    font-size: 19px;

    font-weight: 800;

}

.service-card:nth-child(2)

.service-icon {

    background: #fff0f1;

    color: var(--es-red);

}

.service-card:nth-child(3)

.service-icon {

    background: #fff8df;

    color: var(--es-yellow-dark);

}

.service-card:nth-child(4)

.service-icon {

    background: #ecfaf3;

    color: var(--uz-green-dark);

}

.service-card h3 {

    margin:

        0 0 13px;

    color: var(--dark);

    font-size: 21px;

}

.service-card p {

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.72;

}

.service-link {

    position: absolute;

    left: 30px;

    bottom: 27px;

    color: var(--uz-blue-dark);

    font-size: 13px;

    font-weight: 800;

}

/* =========================================================

   21. TWO COLUMN CONTENT

========================================================= */

.two-column {

    display: grid;

    grid-template-columns:

        1fr 1fr;

    gap: 60px;

    align-items: center;

}

.content-block h2 {

    margin:

        0 0 20px;

    color: var(--dark);

    font-size:

        clamp(

            33px,

            4vw,

            46px

        );

    line-height: 1.2;

    letter-spacing: -1.4px;

}

.content-block p {

    margin:

        0 0 16px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;

}

/* =========================================================

   22. CTA

========================================================= */

.cta-section {

    padding:

        90px 0 20px;

}

.cta-box {

    position: relative;

    overflow: hidden;

    padding:

        65px 40px;

    border-radius: 24px;

    text-align: center;

    background:

        linear-gradient(

            120deg,

            var(--uz-blue-dark),

            #167f98 37%,

            #a4373d 73%,

            var(--es-red)

        );

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

}

.cta-box::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    top: -140px;

    left: -90px;

    border-radius: 50%;

    background:

        rgba(255,255,255,.08);

}

.cta-box::after {

    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    bottom: -160px;

    right: -60px;

    border-radius: 50%;

    background:

        rgba(244,200,62,.13);

}

.cta-content {

    position: relative;

    z-index: 2;

}

.cta-box h2 {

    max-width: 780px;

    margin:

        0 auto 17px;

    color: #ffffff;

    font-size:

        clamp(

            32px,

            4vw,

            44px

        );

    line-height: 1.2;

}

.cta-box p {

    max-width: 650px;

    margin:

        0 auto 28px;

    color:

        rgba(255,255,255,.82);

    font-size: 16px;

    line-height: 1.7;

}

/* =========================================================
   23. FOOTER
========================================================= */

.site-footer {
    position: relative;
    margin-top: 90px;
    background:
        linear-gradient(
            145deg,
            #111d2b 0%,
            #0d1724 58%,
            #09131f 100%
        );
    color: #ffffff;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--uz-blue) 0%,
            var(--uz-blue) 30%,
            var(--uz-green) 30%,
            var(--uz-green) 48%,
            var(--es-yellow) 48%,
            var(--es-yellow) 68%,
            var(--es-red) 68%,
            var(--es-red) 100%
        );
}

.site-footer > .container {
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(4, minmax(150px, 1fr));
    gap: 44px;
    padding: 66px 0 48px;
    align-items: start;
}

/* =========================================================
   24. FOOTER BRAND
========================================================= */

.footer-brand {
    min-width: 0;
    max-width: 390px;
}

.footer-brand-link {
    margin-bottom: 20px;
}

.site-footer .brand-symbol {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.site-footer .brand-main {
    color: #ffffff;
}

.site-footer .brand-domain {
    color: #35b7d7;
}

.site-footer .brand-text {
    font-size: 27px;
}

.footer-description {
    max-width: 360px;
    margin: 0 0 24px;
    color: #9ba9b7;
    font-size: 14px;
    line-height: 1.75;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    color: #b8c4cf;
    font-size: 12px;
    font-weight: 600;
    transition:
        color .18s ease,
        background .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.footer-tags a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .17);
    transform: translateY(-1px);
}

/* =========================================================
   25. FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin: 2px 0 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.footer-column nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-column a {
    position: relative;
    color: #98a6b5;
    font-size: 13.5px;
    line-height: 1.45;
    transition:
        color .18s ease,
        transform .18s ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* =========================================================
   26. FOOTER SECONDARY + NOTICE
========================================================= */

.footer-secondary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-secondary a {
    color: #b2bfca;
    font-size: 13.5px;
    font-weight: 700;
    transition: color .18s ease;
}

.footer-secondary a:hover {
    color: #ffffff;
}

.footer-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-notice-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(25, 167, 206, .14);
    color: #42bedc;
    font-size: 13px;
    font-weight: 800;
}

.footer-notice p {
    max-width: 1050px;
    margin: 0;
    color: #7f8d9c;
    font-size: 12.5px;
    line-height: 1.7;
}

/* =========================================================
   27. FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 21px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-bottom p {
    margin: 0;
    color: #687684;
    font-size: 12.5px;
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.footer-legal a {
    color: #788694;
    font-size: 12.5px;
    transition: color .18s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* =========================================================
   28. RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .main-nav,
    .header-contact {
        display: none;
    }

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

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 54px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 620px;
    }

}

@media (max-width: 1050px) {

    .page-hero-inner,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 650px;
    }

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

}

@media (max-width: 800px) {

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

    .footer-main {
        gap: 34px 40px;
        padding-top: 54px;
    }

}

@media (max-width: 700px) {

    .container {
        padding-left: 19px;
        padding-right: 19px;
    }

    .section {
        padding: 70px 0;
    }

    .page-hero {
        padding: 70px 0;
    }

    .page-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .page-hero-text {
        font-size: 16px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .number-card {
        grid-template-columns: 1fr;
    }

    .number-badge {
        width: 54px;
        height: 54px;
    }

    .service-grid,
    .feature-grid,
    .process-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .notice {
        flex-direction: column;
    }

    .cta-section {
        padding: 70px 0 10px;
    }

    .cta-box {
        padding: 48px 23px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 38px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-column nav {
        gap: 10px;
    }

    .footer-secondary {
        gap: 10px 22px;
        padding: 18px 0;
    }

    .footer-notice {
        padding: 18px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 0 24px;
    }

    .footer-legal {
        gap: 10px 18px;
    }

}

@media (max-width: 600px) {

    .header-inner {
        height: 68px;
        padding: 0 17px;
    }

    .brand-text {
        font-size: 25px;
    }

    .brand-symbol {
        width: 35px;
        height: 35px;
    }

    .site-footer .brand-text {
        font-size: 25px;
    }

}
